/* ========== BASE ========== */
:root {
    --primary-color: #00d4aa;
    --primary-dark: #00b894;
    --primary-light: #7fffd4;
    --text-dark: #000;
    --text-medium: #ccc;
    --text-light: #888;
    --background-light: #1a1a1a;
    --background-white: #000;
    --shadow-light: 0 2px 15px rgba(0, 212, 170, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 212, 170, 0.1);
    --shadow-heavy: 0 8px 30px rgba(0, 212, 170, 0.2);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s ease;
    --border-color: #cecece;
    --wf-primary-color: var(--primary-color);
    --wf-secondary-color: #333;
    --wf-background-color: var(--background-white);
    --wf-text-color: var(--text-medium);
    --wf-border-color: var(--border-color);
    --wf-hover-color: var(--primary-dark);
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #2a2a2a;
    --accent-color: #00d4aa;
    --accent-hover: #00b894;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-muted: #999;
    --border-light: #444;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0, #2a2a2a 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0, #00b894 100%);
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

.quote-modal-body {
    padding: 20px 30px 30px;
}

.quiz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quiz-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 16px;
}

.quiz-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-request-section {
    margin: 20px 0;
    text-align: center;
}

.sample-quiz-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sample-quiz-btn:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.quote-modal-body p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

body.woocommerce {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: Metropolis, Metropolis-Fallback, Apple Color Emoji,
        Noto Color Emoji, sans-serif;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: Metropolis, Metropolis-Fallback, Apple Color Emoji,
        Noto Color Emoji, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.wf-color-modal-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ========== GLOBAL STYLES ========== */
.newsletter-form .btn {
    background: #00d4aa;
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form .btn:hover {
    background: #00b894;
    transform: translatey(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.professional-wrapper {
    background: linear-gradient(135deg,
            var(--background-light) 0,
            var(--background-white) 100%);
    min-height: 100vh;
    font-family: Metropolis, Metropolis-Fallback, Apple Color Emoji,
        Noto Color Emoji, sans-serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    font-size: 1rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #009975);
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: var(--background-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: #3a3a3a;
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.header-cart-link {
    /* Color and Separator */
    color: white;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    /* Vertical line separator */
    margin-left: 20px;
    /* Space to the left of the separator */
    padding-left: 20px;
    /* Space to the right of the separator */

    /* Flexbox for positioning */
    display: inline-flex;
    align-items: center;
    gap: 0.35em;

    transition: color 0.3s ease;
    /* Transition only the color */
}

/* On hover, only the text color changes */
.header-cart-link:hover {
    color: #00d4aa;
}

/* Moves any icon inside the link to the right side */
.header-cart-link i {
    order: 1;
}

.btn:focus,
.view-btn:focus,
.quick-view-btn:focus,
.wishlist-btn:focus,
.sample-request-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary:active {
    transform: translatey(0);
}

.btn i {
    font-size: 0.9rem;
}

.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.professional-ordering select

/* Enhanced Night Theme for WooCommerce Single Product Page */
/* CSS Variables for consistent theming */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #2a2a2a;
    --accent-color: #00d4aa;
    --accent-hover: #00b894;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-muted: #999;
    --border-color: #333;
    --border-light: #444;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-heavy: rgba(0, 0, 0, 0.7);
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

.btn,
.button,
input[type="submit"] {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #fff;
    border: 0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #00b894, #009975);
    transform: translatey(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    color: #fff;
    text-decoration: none;
}

.professional-ordering select

/* WooCommerce Product Filters - Enhanced Styling */
/* Color Variables - Night Theme Consistency */
:root {
    --primary-color: #00d4aa;
    --primary-dark: #00b894;
    --primary-light: #7fffd4;
    --text-dark: #000;
    --text-medium: #ccc;
    --text-light: #888;
    --background-light: #1a1a1a;
    --background-white: #000;
    --border-color: #333;
    --shadow-light: 0 2px 15px rgba(0, 212, 170, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 212, 170, 0.1);
    --shadow-heavy: 0 8px 30px rgba(0, 212, 170, 0.2);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s ease;
    --wf-primary-color: var(--primary-color);
    --wf-secondary-color: #333;
    --wf-background-color: var(--background-white);
    --wf-text-color: var(--text-medium);
    --wf-border-color: var(--border-color);
    --wf-hover-color: var(--primary-dark);
}

/* ========== HEADER ========== */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0, #2a2a2a 100%);
    box-shadow: 0 2px 15px rgba(0, 212, 170, 0.1);
    border-bottom: 3px solid #00d4aa;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 212, 170, 0.15);
}

.main-navigation {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
    flex-grow: 1;
}

.menu-toggle {
    display: none;
    background: #00d4aa;
    color: #fff;
    border: 0;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #00b894;
    transform: translatey(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.header-cta .btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.header-cta .btn:hover {
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
    color: #fff;
    text-decoration: none;
}

.header-cta .btn::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.header-cta .btn:hover::after {
    transform: translatex(3px);
}

.main-menu a:focus,
.header-cta .btn:focus,
.newsletter-form input:focus,
.newsletter-form .btn:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}

.header-cta .btn:hover,
.header-cta .btn-accent:hover {
    background: #1a1a1a;
    color: #00d4aa;
    transform: translatey(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.header-cta {
    flex-shrink: 0;
}

.header-cta .btn,
.header-cta .btn-accent {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.main-navigation ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.submenu-toggle i {
    font-size: 12px;
    margin-left: 3px;
}

.main-navigation ul:not(.sub-menu) li a:hover .submenu-toggle i {
    transform: rotate(180deg);
}

.main-navigation ul.sub-menu li a:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* ========== FOOTER ========== */
.site-footer {
    color: #ecf0f1;
    padding: 60px 0 30px 0;
    position: relative;
    background: linear-gradient(135deg, #000, #010101);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    padding: 0;
}

.footer-column h3 {
    color: #00d4aa;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00d4aa;
    border-radius: 2px;
}

.footer-column h4 {
    color: #00d4aa;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #00d4aa;
    transform: translatex(5px);
}

.footer-social ul {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social ul li {
    margin-bottom: 0;
}

.footer-social ul li a {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social ul li a:hover {
    background: #00d4aa;
    color: #fff;
    transform: translatey(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ========== PRODUCT GRID ========== */
.product-color-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: var(--transition-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--border-light);
}

.product-color-container:hover {
    transform: translatey(-5px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-heavy);
}

.woocommerce ul.products {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.woocommerce ul.products li.product {
    flex: 1 1 250px;
    min-width: 220px;
    max-width: 300px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translatey(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.3;
    color: #fff;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a3c5b;
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .button {
    background: #1a3c5b;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
}

.woocommerce ul.products li.product .button:hover {
    background: #c8a97e;
    transform: translatey(-2px);
    color: white;
}

.woocommerce ul.products li.product a img {
    display: none;
}

.woocommerce ul.products li.product .woocommerce-placeholder {
    display: none;
}

.woocommerce ul.products li.product.outofstock {
    opacity: 0.7;
}

.woocommerce ul.products li .stock-badge {
    /* content: "Loppuunmyyty"; */
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link:hover {
    text-decoration: none;
    color: inherit;
}

.professional-product-card {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
}

.professional-product-card:hover {
    transform: translatey(-8px);
    box-shadow: var(--shadow-heavy);
}

.professional-products-container[data-view="list"] .woocommerce ul.products {
    flex-direction: column;
}

.professional-products-container[data-view="list"] .woocommerce ul.products li.product {
    flex: none;
    min-width: auto;
    max-width: none;
}

.professional-products-container[data-view="list"] .professional-product-card {
    display: flex;
    flex-direction: row;
    height: auto;
}

.professional-products-container[data-view="list"] .product-color-container {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.professional-product-card:hover .swatch-overlay {
    opacity: 1;
}

.professional-product-card:hover .quick-actions {
    opacity: 1;
    transform: translatex(0);
}

.professional-full-width-sections .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.professional-full-width-sections .professional-product-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.professional-full-width-sections .professional-product-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.2);
}

.products .product-color-container {
    height: 150px;
}

/* ========== SINGLE PRODUCT ========== */
.professional-single-product-wrapper {
    background: linear-gradient(135deg,
            var(--background-light) 0,
            var(--background-white) 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.professional-product-layout {
    display: flex;
    padding: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.professional-single-product-wrapper .sidebar,
.professional-single-product-wrapper #sidebar,
.professional-single-product-wrapper .widget-area,
.professional-single-product-wrapper .secondary {
    display: none;
}

.professional-product-layout a {
    color: var(--primary-light);
}

/* ========== OTHER ========== */
.product-color-div {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    transition: all 0.3s ease;
}

.product-color-front {
    left: 0;
    z-index: 2;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.product-color-back {
    left: 50%;
    z-index: 1;
    right: 0;
}

/* .woocommerce-shop .site-content, */

.woocommerce-page .site-content {
    padding: 20px 0;
}

.woocommerce .woocommerce-result-count {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 20px;
}

.woocommerce .woocommerce-ordering select {
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #2a2a2a;
}

.professional-products-container {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.professional-product-item {
    margin: 0;
    padding: 0;
    background: transparent;
    display: block;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.badge {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.sale-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.stock-badge {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); */
}

.featured-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.professional-product-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.professional-product-title h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.professional-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.professional-product-title a:hover {
    color: #00d4aa;
}

.professional-pricing-container {
    display: flex;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 100px;
    background: #2a2a2a;
    padding: 10px 3px 7px 3px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.1);
}

.pricing-card:hover {
    border-color: #00d4aa;
    transform: translatey(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
}

.pricing-card .pricing-label {
    /* margin: 0 0 6px; */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.price-display {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00d4aa;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.price-unit {
    font-size: 0.65rem;
    font-weight: 500;
    color: #999;
}

.professional-products-container[data-view="list"] .professional-product-content {
    flex: 1;
    padding: 15px 20px;
}

.professional-products-container[data-view="list"] .professional-pricing-container {
    flex-direction: row;
    gap: 10px;
    max-width: 300px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-title a {
    color: #fcfcfc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: normal;
}

.site-title a:hover {
    color: #00b894;
    transform: translatey(-1px);
    opacity: 0.9;
}

.site-title img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-title a:hover img {
    transform: scale(1.05);
}

.main-menu-container {
    display: flex;
    align-items: center;
    gap: 3px;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.main-menu a:hover,
.main-menu .current_page_parent>a,
.main-menu .current-menu-item>a {
    color: #00d4aa;
}

.main-menu a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4aa;
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu .current_page_parent>a::after,
.main-menu .current-menu-item>a::after {
    width: 100%;
}

.main-menu .current-menu-item>a {
    font-weight: 400;
    letter-spacing: 0.05px;
}

.main-menu .menu-item-has-children {
    position: relative;
}

.main-menu .menu-item-has-children>a::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: none;
}

.main-menu .menu-item-has-children:hover>a::before {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a2a2a;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
    border-radius: 8px;
    border: 1px solid #333;
    opacity: 0;
    visibility: hidden;
    transform: translatey(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-top: 3px solid #00d4aa;
}

.main-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 12px 20px;
    color: #ccc;
    border-bottom: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    border-radius: 0;
}

.sub-menu a:hover {
    color: #00d4aa;
    background: #333;
    padding-left: 25px;
    background-color: #f8f9fa;
}

.sub-menu a::after {
    display: none;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo a:hover img {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(140deg) saturate(2);
    transform: scale(1.05);
}

.footer-links ul li a::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #00d4aa;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover::before {
    transform: translatex(3px);
}

.footer-contact ul li {
    align-items: flex-start;
    gap: 15px;
}

.footer-contact .icon {
    color: #00d4aa;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact ul li span:last-child,
.footer-contact ul li a {
    color: #ccc;
    flex: 1;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: 0;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background: #0a0a0a;
    margin-top: 40px;
    padding-top: 30px;
    color: #95a5a6;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    opacity: 0;
    visibility: hidden;
    transform: translatey(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
}

.scroll-to-top:hover {
    background-color: #0056b3;
}

.professional-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.professional-card {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: var(--transition);
}

.professional-card:hover {
    transform: translatey(-5px);
    box-shadow: var(--shadow-heavy);
}

.professional-heading {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.professional-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.professional-single-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: #1b1c1c;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.1);
    overflow: hidden;
}

.woocommerce-breadcrumb {
    /* background: linear-gradient(135deg, #00d4aa, #00b894); */
    color: white;
    padding: 15px 30px 20px 30px;
    margin: 0;
    font-size: 0.9rem;
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: white;
}

.professional-product-left-column {
    flex: 0 0 49%;
    width: 49%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-bottom: auto;
}

.woocommerce-loop-product__link {
    text-decoration: none;
}

.professional-product-right-column {
    flex: 0 0 49%;
    width: 49%;
    display: flex;
    flex-direction: column;
    background: var(--background-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    height: fit-content;
    margin-bottom: auto;
}

.professional-color-swatch-container {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 35px;
}

.professional-color-swatch {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.professional-color-swatch:hover {
    transform: scale(1.02);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.1) 0,
            rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-color-swatch:hover .color-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
    right: 15px;
}

.sale-badge,
.stock-badge {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.professional-product-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.professional-add-to-cart .cart {
    background: #3a3a3a;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.professional-add-to-cart .cart:hover {
    border-color: var(--primary-color);
}

.professional-add-to-cart .single_add_to_cart_button {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    color: #fff;
    border: 0;
    padding: 15px 30px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.professional-add-to-cart .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--primary-dark), #009975);
    transform: translatey(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.professional-sample-request {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.professional-sample-request h3 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    color: #fff;
}

.professional-sample-request p {
    margin: 0 0 20px;
    opacity: 0.9;
}

.sample-request-btn {
    background: #1a1a1a;
    color: var(--primary-color);
    border: 0;
    padding: 12px 25px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sample-request-btn:hover {
    transform: translatey(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.professional-product-description {
    background: #3a3a3a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.professional-product-description h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.description-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.professional-specifications {
    margin-bottom: 30px;
}

.professional-specifications h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.specifications-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #3a3a3a;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-medium);
    font-weight: 500;
}

.spec-value.in-stock {
    color: #27ae60;
    font-weight: 600;
}

.spec-value.out-of-stock {
    color: #e74c3c;
    font-weight: 600;
}

.professional-additional-info {
    margin-bottom: 30px;
}

.professional-additional-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: #3a3a3a;
    padding: 20px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translatey(-2px);
}

.info-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.professional-contact-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #3a3a3a;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    color: #bdc3c7;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translatey(-2px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.professional-full-width-sections {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    width: 100%;
    flex: 0 0 100%;
    background: var(--background-light);
    padding: 15px 0;
}

.professional-archive-wrapper,
.professional-category-wrapper {
    background: linear-gradient(135deg,
            var(--background-light) 0,
            var(--background-white) 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.professional-archive-container,
.professional-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.professional-archive-header {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
    text-align: center;
}

.professional-archive-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.professional-category-hero {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    color: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.professional-category-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"></circle><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"></circle></pattern></defs><rect width="100" height="100" fill="url(%23grain)"></rect></svg>');
    opacity: 0.3;
}

.category-hero-content {
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.professional-shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3a3a3a;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.shop-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggle {
    display: flex;
    background: var(--background-light);
    border-radius: var(--border-radius-small);
    padding: 4px;
}

.view-btn {
    background: transparent;
    border: 0;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition);
}

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

.professional-ordering select {
    background: #3a3a3a;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.professional-ordering select:focus {
    outline: 0;
    border-color: var(--primary-color);
}

.professional-product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.swatch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.1) 0,
            rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translatex(20px);
    transition: var(--transition);
    z-index: 3;
}

.quick-view-btn,
.wishlist-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.professional-product-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.professional-product-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.professional-product-meta i {
    color: var(--primary-color);
    width: 12px;
}

.professional-product-price {
    margin: 10px 0;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.secondary-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.professional-product-attributes {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-medium);
    flex: 1;
}

.attribute-item {
    display: block;
    line-height: 1.4;
}

.attribute-item strong {
    color: var(--text-dark);
}

.professional-add-to-cart {
    margin-top: auto;
}

.professional-add-to-cart .button {
    width: 100%;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    color: #fff;
    border: 0;
    padding: 12px 20px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.professional-add-to-cart .button:hover {
    background: linear-gradient(135deg, var(--primary-dark), #009975);
    transform: translatey(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    color: #fff;
    text-decoration: none;
}

.professional-add-to-cart .button:before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.professional-pagination {
    margin-top: 40px;
    text-align: center;
}

.professional-pagination .page-numbers {
    background: #3a3a3a;
    color: var(--text-dark);
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    border: unset;
    transition: var(--transition);
    display: inline-flex;
}

.professional-pagination .page-numbers li {
    display: inline-block;
    margin-left: 5px;
}

.page-numbers .fa-chevron-right {
    margin-left: 5px;
}

.page-numbers .fa-chevron-left {
    margin-right: 5px;
}

.professional-pagination .page-numbers li span {
    border: 2px solid #cbcbcb;
    border-radius: 5px;
    cursor: pointer;
}

.professional-pagination .page-numbers li:hover span,
.professional-pagination .page-numbers li:focus span {
    background: var(--primary-color);
    color: #fff;
}

.professional-no-products {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.no-products-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-products-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.no-products-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.professional-category-features {
    background: #3a3a3a;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 60px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.professional-category-features h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.category-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--background-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.woocommerce-tabs {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    box-shadow: unset;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin: 30px 0;
}

.woocommerce-tabs .wc-tabs {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-tabs .wc-tabs li {
    flex: 1;
    margin: 0;
    border: 0;
    background: transparent;
}

.woocommerce-tabs .wc-tabs li a {
    display: block;
    padding: 20px 25px;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 0;
    background: transparent;
    position: relative;
}

.woocommerce-tabs .wc-tabs li a:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 170, 0.05);
}

.woocommerce-tabs .wc-tabs li.active a {
    color: var(--primary-color);
    background: #1a1a1a;
    border-bottom: 3px solid var(--primary-color);
}

.woocommerce-tabs .wc-tabs li.active a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.woocommerce-tabs .wc-tab {
    padding: 30px;
    background: #1a1a1a;
}

.woocommerce-tabs .wc-tab h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.woocommerce-tabs .wc-tab p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.woocommerce-tabs .wc-tab table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.woocommerce-tabs .wc-tab table th,
.woocommerce-tabs .wc-tab table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-tabs .wc-tab table th {
    background: var(--background-light);
    color: var(--text-dark);
    font-weight: 600;
}

.woocommerce-tabs .wc-tab table td {
    color: var(--text-medium);
}

.professional-full-width-sections .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.professional-full-width-sections h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 50px 0;
}

.professional-full-width-sections .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.2rem;
    margin: -30px 0 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.professional-full-width-sections .professional-product-item {
    margin: 0;
    padding: 0;
    background: transparent;
}

.cross-sells,
.upsells {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.cross-sells h2,
.upsells h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.site-content {
    margin-top: 0;
    padding: 0;
}

.woocommerce-pagination {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    margin: 0 5px;
    padding: 0 15px;
    background: #1a1a1a;
    color: var(--text-dark);
    text-decoration: none;
    border: unset;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    flex-wrap: wrap;
}

.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
    padding: 0 20px;
    font-weight: 700;
}

.woocommerce-pagination .page-numbers.dots {
    border: 0;
    background: transparent;
    color: var(--text-light);
    cursor: default;
}

.woocommerce-pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translatex(5px);
}

.footer-section ul li a i {
    width: 16px;
    text-align: center;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translatey(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.footer-newsletter {
    background: rgba(0, 212, 170, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.footer-newsletter h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translatey(-2px);
}

.upsells .products,
.cross-sells .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.upsells .products li,
.cross-sells .products li {
    margin: 0;
    padding: 0;
}

.professional-categories-section {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.categories-header {
    text-align: center;
    margin-bottom: 40px;
}

.categories-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.categories-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0;
}

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

.category-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.12);
    border: 1px solid rgba(0, 212, 170, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scalex(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 16px 40px rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.2);
}

.category-card:hover::before {
    transform: scalex(1);
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image {
    position: relative;
    height: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-light), #f1f3f4);
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    width: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.category-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"></path></pattern></defs><rect width="100" height="100" fill="url(%23grid)"></rect></svg>');
}

.category-placeholder i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    color: var(--text-medium, #666);
    transition: color 0.3s ease;
}

.category-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: var(--primary-color);
    transform: scale(1.05);
}

.category-info {
    padding: 30px 25px;
    background: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 212, 170, 0.2),
            transparent);
}

.category-info h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.category-card:hover .category-info h3 {
    color: var(--primary-color);
}

.category-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-info p {
    color: var(--text-dark);
}

/* Main container for the title block */
.professional-product-title {
    display: flex;
    flex-direction: column;
}

/* Styling for the 'Brand/Collection' subtitle line */
.brand-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #ccc);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

/* Styling for the slash separator within the brand name */
.brand-name b {
    font-weight: 700;
    color: var(--accent-color, #00d4aa);
    /* Uses the theme's main accent color */
    margin: 0 5px;
    /* Adds a little space around the slash */
}

/* Styling for the main product title (H2) */
.professional-product-title h2.woocommerce-loop-product__title {
    color: var(--text-primary, #fff);
    font-size: 1.6rem;
    font-weight: 700;
    /* Makes the title bold and prominent */
    line-height: 1.3;
    margin: 0;
    /* Resets default margin to align properly */
}

.product-quote-request {
    padding: 0 0 0 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-request-btn {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    color: #fff;
    border: 0;
    padding: 12px 8px;
    /* border-radius: 8px; */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;

    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.quote-request-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #009975);
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.quote-request-btn i {
    font-size: 0.9rem;
}

.professional-product-tabs {
    margin-top: 30px;
    display: none;
}

.professional-product-tabs .woocommerce-tabs {
    margin: 0;
}

.professional-product-tabs .wc-tabs {
    background: var(--background-light);
    border-radius: 8px 8px 0 0;
}

.professional-product-tabs .wc-tabs li a {
    padding: 15px 20px;
    font-size: 0.9rem;
}

.professional-product-tabs .wc-tab {
    padding: 25px;
    font-size: 0.9rem;
}

.professional-product-tabs .wc-tab h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.professional-related-categories {
    background: var(--background-white, #000);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.professional-related-categories h3 {
    color: var(--primary-color, #00d4aa);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.professional-related-categories h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translatex(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg,
            var(--primary-color, #00d4aa),
            var(--primary-dark, #00b894));
    border-radius: 2px;
}

.related-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.related-category-card {
    flex: 1 1 250px;
    min-width: 220px;
    max-width: 280px;
    background: var(--background-white, #000);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.related-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg,
            var(--primary-color, #00d4aa),
            var(--primary-dark, #00b894));
    transform: scalex(0);
    transition: transform 0.3s ease;
}

.related-category-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.2);
    border-color: var(--primary-color, #00d4aa);
    text-decoration: none;
    color: inherit;
}

.related-category-card:hover::before {
    transform: scalex(1);
}

.related-category-card:hover .category-placeholder {
    background: linear-gradient(135deg,
            var(--primary-color, #00d4aa),
            var(--primary-dark, #00b894));
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.related-category-card:hover .category-placeholder i {
    color: #fff;
}

.category-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark, #fff333);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-category-card:hover .category-info h4 {
    color: var(--primary-color, #00d4aa);
}

.product-count {
    font-size: 0.9rem;
    color: var(--text-medium, #666);
    font-weight: 500;
    background: #2a2a2a;
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.related-category-card:hover .product-count {
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary-dark, #00b894);
}

.related-category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.related-category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.related-category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.related-category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.related-category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.related-category-card:nth-child(6) {
    animation-delay: 0.6s;
}

.related-category-card:focus {
    outline: 3px solid rgba(0, 212, 170, 0.3);
    outline-offset: 2px;
}

.related-category-card:focus:not(:hover) {
    transform: translatey(-4px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.15);
}

#tab-title-reviews>a {
    display: none;
}

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.quote-modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.quote-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.quote-modal-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-modal-header h2 i {
    font-size: 1.6rem;
    opacity: 0.8;
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: 0;
    border: 0;
    font-size: 28px;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quote-modal-close:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
}

.form-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.quote-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.quote-message.success {
    background: #d1edff;
    color: #0c63e4;
    border: 1px solid #b6d7ff;
}

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

.professional-ordering select,
.woocommerce-result-count,
.category-info h3,
.category-count,
.woocommerce-pagination .page-numbers,
.spec-label,
.info-card h4,
.wf-product-filters h3,
.wf-no-products-found,
.woocommerce-tabs .wc-tab table th {
    color: var(--text-medium);
}

.spec-item a {
    color: var(--primary-light);
}

#sidebar,
.sidebar,
.widget-area,
.secondary,
.woocommerce-sidebar {
    display: none;
    visibility: hidden;
}

.woocommerce.single-product .site-content,
.woocommerce.single-product .content-area,
.woocommerce.single-product .main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--primary-bg);
}

.woocommerce.single-product .container,
.woocommerce.single-product .site-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--primary-bg);
}

.woocommerce div.product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.woocommerce div.product .product-left-column {
    flex: 1;
    min-width: 0;
}

.woocommerce div.product .product-right-column {
    width: 450px;
    height: fit-content;
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 20px;
}

.woocommerce div.product .product_title,
.woocommerce div.product h1.entry-title {
    font-size: 3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.02em;
}

.woocommerce div.product .woocommerce-product-gallery {
    width: 100%;
    margin-bottom: 40px;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-product-gallery__image {
    display: none;
}

.woocommerce div.product .summary {
    width: 100%;
    margin: 0;
    padding: 0;
}

.product-pricing-sections,
.professional-pricing-container {
    display: flex;
    gap: 10px;
    /* margin: 40px 0; */
    flex-wrap: wrap;
}

.product-pricing-sections>div,
.pricing-card {
    flex: 1;
    /* min-width: 280px; */
    width: 50%;
    background: var(--gradient-primary);
    padding: 8px 3px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* .product-pricing-sections>div::before,
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scalex(0);
    transition: var(--transition-medium);
} */

.product-pricing-sections>div:hover,
.pricing-card:hover {
    border-color: var(--accent-color);
    transform: translatey(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.product-pricing-sections>div:hover::before,
.pricing-card:hover::before {
    transform: scalex(1);
}

.product-pricing-sections h3,
.pricing-card .pricing-label {
    color: var(--accent-color);
    /* margin-bottom: 20px; */
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-pricing-sections .price,
.pricing-card .price-display {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 2px 4px var(--shadow-light);
}

.woocommerce div.product .woocommerce-product-attributes {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    margin: 40px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.woocommerce div.product .woocommerce-product-attributes table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.woocommerce div.product .woocommerce-product-attributes th {
    background: var(--tertiary-bg);
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    width: 40%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce div.product .woocommerce-product-attributes td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--secondary-bg);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 1rem;
}

.woocommerce div.product .woocommerce-product-attributes tr:last-child th,
.woocommerce div.product .woocommerce-product-attributes tr:last-child td {
    border-bottom: 0;
}

.woocommerce div.product .woocommerce-product-attributes tr:hover {
    background: var(--tertiary-bg);
}

.woocommerce div.product form.cart {
    margin: 40px 0;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.woocommerce div.product form.cart .quantity {
    margin-right: 20px;
}

.woocommerce div.product form.cart .quantity input {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    width: 100px;
    text-align: center;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.woocommerce div.product form.cart .quantity input:focus {
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--gradient-accent);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 12px;
    border: 0;
    transition: var(--transition-medium);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    transform: translatey(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

.woocommerce div.product form.cart .single_add_to_cart_button:active {
    transform: translatey(-1px);
}

.sample-request-section {
    background: var(--gradient-accent);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.sample-request-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0,
            transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.sample-request-section h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px var(--shadow-light);
}

.sample-request-section p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.sample-request-section button {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 0;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.sample-request-section button:hover {
    background: var(--primary-bg);
    transform: translatey(-3px);
    box-shadow: 0 15px 40px var(--shadow-heavy);
}

.product-right-column .additional-info-section h3 {
    color: var(--accent-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-right-column .additional-info-section .info-section {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.product-right-column .additional-info-section .info-section:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.product-right-column .additional-info-section .info-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-right-column .additional-info-section .info-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
}

.product-right-column .additional-info-section .contact-info {
    background: var(--primary-bg);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border: 2px solid var(--border-light);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.product-right-column .additional-info-section .contact-info h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.product-right-column .additional-info-section .contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.product-right-column .woocommerce-tabs {
    margin-bottom: 40px;
}

.product-right-column .woocommerce-tabs .wc-tabs {
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: var(--secondary-bg);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.product-right-column .woocommerce-tabs .wc-tabs li {
    margin: 0;
    background: transparent;
    border: 0;
    flex: 1;
}

.product-right-column .woocommerce-tabs .wc-tabs li a {
    color: var(--text-secondary);
    padding: 15px 20px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-right-column .woocommerce-tabs .wc-tabs li.active a,
.product-right-column .woocommerce-tabs .wc-tabs li a:hover {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.product-right-column .woocommerce-tabs .wc-tab {
    background: var(--secondary-bg);
    border-radius: 0 0 12px 12px;
    padding: 25px;
}

.product-right-column .woocommerce-tabs .wc-tab h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-right-column .woocommerce-tabs .wc-tab table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-right-column .woocommerce-tabs .wc-tab table th {
    background: var(--primary-bg);
    font-weight: 600;
    color: var(--text-primary);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-right-column .woocommerce-tabs .wc-tab table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    background: var(--tertiary-bg);
    font-size: 1rem;
    color: var(--text-secondary);
}

.product-right-column .woocommerce-tabs .wc-tab table tr:hover {
    background: var(--secondary-bg);
}

.woocommerce div.product .woocommerce-tabs {
    width: 100%;
    margin-top: 60px;
    clear: both;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs {
    border-bottom: 4px solid var(--accent-color);
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: var(--secondary-bg);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li {
    margin: 0;
    background: transparent;
    border: 0;
    flex: 1;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li a {
    color: var(--text-secondary);
    padding: 20px 30px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: var(--transition-medium);
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce div.product .woocommerce-tabs .wc-tabs li.active a,
.woocommerce div.product .woocommerce-tabs .wc-tabs li a:hover {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    transform: translatey(-2px);
}

.woocommerce div.product .woocommerce-tabs .wc-tab {
    padding: 40px;
    background: var(--secondary-bg);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.woocommerce div.product .woocommerce-tabs .wc-tab h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce div.product .woocommerce-tabs .wc-tab p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.woocommerce .upsells,
.woocommerce .cross-sells,
.woocommerce .related {
    width: 100%;
    margin-top: 60px;
    padding: 40px;
    border-top: 3px solid var(--accent-color);
    clear: both;
    background: var(--gradient-primary);
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.woocommerce .upsells h2,
.woocommerce .cross-sells h2,
.woocommerce .related h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.woocommerce div.product .variations {
    margin: 30px 0;
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
    padding: 15px;
    border: 0;
    vertical-align: middle;
}

.woocommerce div.product .variations th {
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.woocommerce div.product .variations select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--tertiary-bg);
    color: var(--text-primary);
    min-width: 200px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.woocommerce div.product .variations select:focus {
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

/* *:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
} */

.loading {
    animation: pulse 2s ease-in-out infinite;
}

.woocommerce div.product a,
.woocommerce div.product button {
    transition: var(--transition-medium);
}

.woocommerce div.product a:hover,
.woocommerce div.product button:hover {
    transform: translatey(-2px);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 6px;
}

* {
    box-sizing: border-box;
}

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

.woocommerce-products-header {
    color: #fff;
}

.main-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}


.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4aa;
    transform: translatey(-2px);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea,
select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.entry-content {
    line-height: 1.6;
    color: #333;
}

.entry-title {
    color: #00d4aa;
    font-weight: 700;
}

.widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.widget-title {
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00d4aa;
}

.page-numbers {
    background: #fff;
    color: #333;
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: inline-block;
}

.page-numbers li:hover,
.page-numbers li.current {
    /* background: #00d4aa; */
    color: #fff;
    border-color: #00d4aa;
    text-decoration: none;
}

.wf-category-header {
    background: #000;
    color: var(--wf-text-color);
    padding: 24px 32px;
    margin-bottom: 0;
    /* background-color: #2d3748; */
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wf-category-header .wf-category-info h1 {
    color: var(--wf-text-color);
    margin-bottom: 15px;
}

.wf-category-header .wf-category-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.wf-filter-container {
    background: var(--wf-background-color);
    border: 1px solid var(--wf-border-color);
    border-radius: 0;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.1);
}

.wf-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wf-filter-group {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    max-height: 210px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--wf-primary-color) rgba(0, 0, 0, 0.1);
}

.wf-filter-group h4 {
    color: var(--wf-primary-color);
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wf-filter-group h4 i {
    font-size: 18px;
}

.wf-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wf-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.wf-checkbox-item:hover {
    background: rgba(0, 212, 170, 0.1);
}

.wf-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--wf-primary-color);
}

.wf-checkbox-item label {
    color: var(--wf-text-color);
    cursor: pointer;
    font-size: 14px;
}

.wf-color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.wf-color-swatch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    height: 40px;
}

.wf-color-swatch:hover {
    border-color: var(--wf-primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.wf-color-swatch.selected {
    border-color: var(--wf-primary-color);
    background: rgba(0, 212, 170, 0.2);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.wf-color-preview {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.wf-color-swatch input[type="checkbox"] {
    display: none;
}

.wf-color-swatch label {
    color: var(--wf-text-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.wf-range-container {
    margin: 15px 0;
}

.wf-range-label {
    color: var(--wf-text-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.wf-dual-range {
    position: relative;
    height: 6px;
    background: #444;
    border-radius: 3px;
    margin: 20px 0;
}

.wf-range-progress {
    position: absolute;
    height: 100%;
    background: var(--wf-primary-color);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.wf-range-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.wf-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--wf-primary-color);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wf-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--wf-primary-color);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wf-range-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.wf-range-input {
    flex: 1;
    padding: 8px 12px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-medium);
    font-size: 14px;
    text-align: center;
}

.wf-range-input:focus {
    outline: none;
    border-color: var(--wf-primary-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
}

.wf-filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--wf-border-color);
}

.wf-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.wf-btn-primary {
    background: var(--wf-primary-color);
    color: #000;
}

.wf-btn-primary:hover {
    background: var(--wf-hover-color);
    transform: translatey(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.wf-btn-secondary {
    background: transparent;
    color: var(--wf-text-color);
    border: 2px solid var(--wf-border-color);
}

.wf-btn-secondary:hover {
    border-color: var(--wf-primary-color);
    color: var(--wf-primary-color);
}

.wf-color-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.wf-color-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1000px;
    height: 90vh;
    max-height: 800px;
    background: var(--wf-background-color);
    border: 2px solid var(--wf-primary-color);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.wf-color-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--wf-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.wf-color-modal-header h3 {
    color: var(--wf-primary-color);
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.wf-color-modal-close {
    background: none;
    border: none;
    color: var(--wf-text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wf-color-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wf-primary-color);
}

#wf-ncs-color-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#wf-ncs-color-circle svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.wf-color-selection-info {
    margin-top: 20px;
    text-align: center;
    flex-shrink: 0;
}

.wf-selected-color-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wf-selected-color-text {
    color: var(--wf-text-color);
    font-size: 16px;
    font-weight: 500;
}

.wf-color-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--wf-border-color);
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-shrink: 0;
}

.wf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.wf-product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wf-border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wf-product-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
    border-color: var(--wf-primary-color);
}

.wf-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.wf-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--wf-border-color);
    border-top: 4px solid var(--wf-primary-color);
    border-radius: 50%;
    animation: wf-spin 1s linear infinite;
}

.wf-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin: 0;
    padding-top: 30px;
    background: #000;
}

.wf-pagination a,
.wf-pagination span {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wf-border-color);
    border-radius: 4px;
    color: var(--wf-text-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.wf-pagination a:hover {
    background: var(--wf-primary-color);
    color: #000;
    border-color: var(--wf-primary-color);
}

.wf-pagination .current {
    background: var(--wf-primary-color);
    color: #000;
    border-color: var(--wf-primary-color);
}

.wf-results-count {
    color: var(--wf-text-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

#wf-mobile-filter-toggle {
    display: none;
}

.pricing-card .pricing-label,
.feature-card h4,
.category-info h4,
.form-group label,
.product,
.contact-item strong,
.woocommerce-tabs .wc-tab p {
    color: var(--text-medium);
}

.woocommerce-notices-wrapper {
    margin: 20px 0;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    color: #333;
}

.woocommerce-error {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* .main-menu-container:not(.active) li {
    pointer-events: none;
    cursor:not-allowed;
} */

.woocommerce-tabs h2,
.additional_information_tab,
.professional-contact-info h3 {
    display: none;
}

.woocommerce-product-attributes-item {
    border-bottom: 1px solid;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #fff;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #fff;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #fff;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.wf-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.wf-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wf-category-title {
    margin: 0;
    font-size: 4rem;
    font-weight: 800;
    color: #edf2f7;
}

.wf-category-stats {
    margin-top: 4px;
}

.wf-product-count {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #a0aec0;
}

.wf-product-count .fas {
    margin-right: 8px;
    font-size: 14px;
    color: #718096;
}

.wf-results-count,
.wf-filter-container,
.woocommerce-result-count {
    margin: 0;
}

.woocommerce-result-count {
    padding-top: 25px;
}

.wf-products-container,
.wf-archive-wrapper,
.wf-filter-section {
    background: #000;
}

.wf-products-container {
    padding: 15px;
}

.woocommerce-ordering .orderby {
    background: #1a1a1a;
    color: #fff;
}

.wf-filter-group::-webkit-scrollbar {
    width: 8px;
}

.wf-filter-group::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.wf-filter-group::-webkit-scrollbar-thumb {
    background-color: var(--wf-primary-color);
    border-radius: 4px;
}

.woocommerce-pagination .page-numbers li {
    display: block;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce-pagination .page-numbers li .page-numbers.current,
.woocommerce-pagination .page-numbers li:hover a {
    outline: 2px solid var(--wf-primary-color);
    border-radius: 5px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper li.variable-item,
.variations_button input {
    background: #2a2a2a;
    padding: 4px 5px;
    border: unset;
    color: #fff;
    outline: unset;
}

.single_add_to_cart_button {
    margin-top: 20px;
}

/* ========== MEDIA QUERY: (MAX-WIDTH: 1200PX) ========== */

/* ========== MEDIA QUERY: (MAX-WIDTH: 1024PX) ========== */

/* ========== MEDIA QUERY: (MAX-WIDTH: 991PX) ========== */

/* ========== MEDIA QUERY: (MAX-WIDTH: 768PX) ========== */

/* ========== MEDIA QUERY: (MAX-WIDTH: 480PX) ========== */

/* ========== MEDIA QUERY: (MAX-WIDTH: 390PX) ========== */

/* ========== MEDIA QUERY: (PREFERS-CONTRAST: HIGH) ========== */

/* ========== MEDIA QUERY: (PREFERS-REDUCED-MOTION: REDUCE) ========== */

/* ========== MEDIA QUERY: PRINT ========== */

@media (max-width: 1200px) {

    /* --- Other --- */
    .woocommerce div.product {
        padding: 30px;
        gap: 40px;
    }

    .woocommerce div.product .product-right-column {
        width: 400px;
    }
}

@media (max-width: 1024px) {

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }

    /* --- Product Grid --- */
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* --- Single Product --- */
    .professional-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* --- Other --- */
    .header-container {
        padding: 0 15px;
        min-height: 70px;
    }

    .main-menu {
        gap: 20px;
    }

    .site-title {
        font-size: 1.7rem;
    }

    .professional-product-right-column {
        order: -1;
    }

    .professional-pricing-container {
        grid-template-columns: 1fr;
    }

    .professional-full-width-sections {
        padding: 40px 0;
        margin-top: 40px;
    }

    .professional-full-width-sections h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .woocommerce-tabs .wc-tabs {
        flex-direction: column;
    }

    .woocommerce-tabs .wc-tabs li a {
        padding: 15px 20px;
    }

    .woocommerce-tabs .wc-tab {
        padding: 25px;
    }

    .upsells .products,
    .cross-sells .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .professional-categories-section {
        padding: 40px 30px;
        margin: 30px 0;
    }

    .categories-header h2 {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-image {
        height: 180px;
    }

    .category-info {
        padding: 20px 15px;
    }

    .professional-product-tabs .wc-tabs li a {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .professional-product-tabs .wc-tab {
        padding: 20px;
    }

    .professional-related-categories {
        padding: 35px 25px;
        margin: 35px 0;
    }

    .related-categories-grid {
        gap: 20px;
    }

    .related-category-card {
        flex: 1 1 220px;
        min-width: 200px;
        max-width: 250px;
        padding: 20px 15px;
    }

    .woocommerce div.product {
        flex-direction: column;
        gap: 40px;
        padding: 25px;
    }

    .woocommerce div.product .product-right-column {
        width: 100%;
        position: static;
        order: -1;
    }

    .woocommerce div.product .product_title,
    .woocommerce div.product h1.entry-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 991px) {

    /* --- Product Grid --- */
    .woocommerce ul.products li.product {
        flex: 1 1 250px;
        min-width: 220px;
    }
}

@media (max-width: 768px) {

    /* --- Global Styles --- */
    .newsletter-form .btn {
        padding: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn,
    .button,
    input[type="submit"] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* --- Header --- */
    .menu-toggle {
        display: block;
    }

    .header-cta {
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-social ul {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* --- Product Grid --- */
    .woocommerce ul.products {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .woocommerce ul.products li.product {
        flex: 1 1 200px;
        min-width: 180px;
        padding: 10px;
    }

    .product-color-container {
        height: 150px;
        width: 150px;
    }

    .professional-full-width-sections .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* --- Single Product --- */
    .professional-single-product-wrapper,
    .professional-archive-wrapper,
    .professional-category-wrapper {
        padding: 20px 0;
    }

    .professional-product-layout {
        padding: 20px;
    }

    .professional-single-product-wrapper {
        padding: 20px 0;
    }

    /* --- Other --- */
    .main-menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2a2a2a;
        box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
        border-top: 1px solid #e9ecef;
        transform: translatey(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
    }

    .main-menu-container.active {
        transform: translatey(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .main-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f2f6;
    }

    .main-menu li:last-child {
        border-bottom: 0;
    }

    .main-menu a {
        padding: 15px 0;
        width: 100%;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: #333;
        border-radius: 0;
        margin-top: 10px;
        padding: 10px 0;
    }

    .sub-menu a {
        padding: 10px 20px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .professional-single-product-container,
    .professional-archive-container,
    .professional-category-container {
        padding: 0 10px;
    }

    .professional-color-swatch-container {
        height: 250px;
    }

    .professional-product-header h1 {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-stats {
        flex-direction: column;
        gap: 20px;
    }

    .professional-shop-controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .shop-controls-right {
        width: 100%;
        justify-content: space-between;
    }

    .professional-product-image {
        height: 200px;
    }

    .professional-product-content {
        padding: 20px;
    }

    .category-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .professional-full-width-sections {
        padding: 30px 0;
        margin-top: 30px;
    }

    .professional-full-width-sections .container {
        padding: 0 15px;
    }

    .professional-full-width-sections h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .woocommerce-tabs .wc-tabs li a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .woocommerce-tabs .wc-tab {
        padding: 20px;
    }

    .cross-sells,
    .upsells {
        padding: 25px;
        margin: 25px 0;
    }

    .cross-sells h2,
    .upsells h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .upsells .products,
    .cross-sells .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .professional-categories-section {
        padding: 30px 20px;
        margin: 25px 0;
    }

    .categories-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
    }

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

    .category-image {
        height: 60px;
        width: 60px;
        margin-bottom: 15px;
    }

    .category-info {
        padding: 15px 12px;
    }

    .category-info h3 {
        font-size: 1.1rem;
    }

    .category-info p {
        font-size: 0.85rem;
    }

    .quote-request-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .professional-product-tabs .wc-tabs {
        flex-direction: column;
    }

    .professional-product-tabs .wc-tabs li a {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .professional-product-tabs .wc-tab {
        padding: 15px;
    }

    .professional-related-categories {
        padding: 30px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }

    .professional-related-categories h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .related-categories-grid {
        gap: 15px;
    }

    .related-category-card {
        flex: 1 1 180px;
        min-width: 160px;
        max-width: 200px;
        padding: 18px 12px;
    }

    .category-placeholder i {
        font-size: 1.5rem;
    }

    .category-info h4 {
        font-size: 1.1rem;
    }

    .product-count {
        font-size: 0.8rem;
        padding: 3px 10px;
    }

    .quote-modal-content {
        width: 95%;
        margin: 20px;
        max-height: 90vh;
    }

    .quote-modal-header {
        padding: 25px 20px 15px;
    }

    .quote-modal-header h2 {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
    }

    .woocommerce.single-product .container,
    .woocommerce.single-product .site-main {
        padding: 20px 15px;
    }

    .woocommerce div.product {
        padding: 20px;
        gap: 30px;
    }

    .woocommerce div.product .product_title,
    .woocommerce div.product h1.entry-title {
        font-size: 2rem;
    }

    .product-pricing-sections,
    .professional-pricing-container {
        flex-direction: column;
        gap: 20px;
    }

    .product-pricing-sections>div,
    .pricing-card {
        min-width: 100%;
        padding: 30px 20px;
    }

    .woocommerce div.product .woocommerce-product-attributes th,
    .woocommerce div.product .woocommerce-product-attributes td {
        padding: 15px;
        font-size: 0.95rem;
    }

    .woocommerce div.product form.cart {
        padding: 20px;
    }

    .woocommerce div.product form.cart .single_add_to_cart_button {
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .sample-request-section {
        padding: 30px 20px;
    }

    .product-right-column {
        padding: 25px;
    }

    .woocommerce div.product .woocommerce-tabs .wc-tabs {
        flex-direction: column;
    }

    .woocommerce div.product .woocommerce-tabs .wc-tabs li a {
        padding: 15px 20px;
    }

    .woocommerce div.product .woocommerce-tabs .wc-tab {
        padding: 25px;
    }

    .wf-filter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wf-color-modal-content {
        width: 95vw;
        height: 95vh;
        margin: 2.5vh auto;
    }

    .wf-filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wf-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .wf-color-swatches {
        grid-template-columns: 1fr;
    }

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

    #wf-mobile-filter-toggle {
        display: block;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        background: #f5f5f5;
        color: var(--text-dark);
        border: 1px solid #ccc;
        padding: 10px 15px;
        border-radius: 6px;
        font-weight: 600;
        transition: var(--transition);
        cursor: pointer;
        font-size: 14px;
        margin: auto;
        z-index: 99;
        position: relative;
    }

    #wf-mobile-filter-toggle:hover {
        background: var(--primary-dark);
        transform: translatey(-2px);
        box-shadow: var(--shadow-medium);
    }

    .wf-filter-container {
        max-height: 0;
        overflow: hidden;
        transform: translatey(-20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .wf-filter-container.wf-filters-open {
        max-height: 2000px;
        transform: translatey(0);
        opacity: 1;
    }

    .wf-filter-section {
        padding: 15px;
    }

    .wf-header-right img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .widget {
        padding: 20px;
        margin-bottom: 20px;
    }

    .professional-single-product-container {
        margin: 0 10px;
        border-radius: 12px;
    }

    .woocommerce-breadcrumb {
        padding: 12px 20px;
        margin: 0 -10px 20px -10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    /* --- Footer --- */
    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-container {
        padding: 0 10px;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-social ul li a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* --- Product Grid --- */
    .woocommerce ul.products li.product {
        flex: 0 0 49%;
        min-width: 100%;
        width: 49%;
    }

    .product-color-container {
        height: 120px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .professional-full-width-sections .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Single Product --- */
    .professional-product-layout {
        padding: 15px;
    }

    /* --- Other --- */
    .header-container {
        min-height: 60px;
        padding: 0 10px;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .professional-product-image {
        height: 180px;
    }

    .professional-product-content {
        padding: 15px;
        gap: 12px;
    }

    .professional-color-swatch-container {
        height: 200px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .price-display {
        font-size: 1.4rem;
    }

    .woocommerce-tabs .wc-tabs li a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .woocommerce-tabs .wc-tab {
        padding: 15px;
    }

    .cross-sells,
    .upsells {
        padding: 20px;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-image {
        height: 50px;
        width: 50px;
        flex-shrink: 0;
    }

    .category-info {
        padding: 12px 10px;
        align-items: flex-start;
        flex: 1;
    }

    .category-info h3 {
        font-size: 1rem;
    }

    .quote-request-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .professional-related-categories {
        padding: 25px 15px;
        margin: 25px 0;
    }

    .professional-related-categories h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .related-categories-grid {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .related-category-card {
        flex: none;
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 20px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 15px;
    }

    .category-info h4 {
        font-size: 1rem;
    }

    .product-count {
        font-size: 0.75rem;
        align-self: flex-start;
    }

    .quote-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: none;
    }

    .quote-modal-header {
        padding: 20px 15px 12px;
    }

    .quote-modal-header h2 {
        font-size: 1.3rem;
    }

    .quote-modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }

    .woocommerce div.product .product_title,
    .woocommerce div.product h1.entry-title {
        font-size: 1.8rem;
    }

    .product-pricing-sections h3,
    .pricing-card .pricing-label {
        font-size: 1.2rem;
    }

    .product-pricing-sections .price,
    .pricing-card .price-display {
        font-size: 1.6rem;
    }

    .woocommerce div.product form.cart .quantity input {
        width: 80px;
        padding: 12px;
    }

    .sample-request-section h3 {
        font-size: 1.5rem;
    }

    .sample-request-section p {
        font-size: 1rem;
    }

    .wf-range-inputs {
        flex-direction: column;
    }

    .wf-color-modal-content {
        width: 98vw;
        height: 98vh;
        margin: 1vh auto;
        border-radius: 8px;
    }

    #wf-ncs-color-circle svg {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 390px) {

    /* --- Product Grid --- */
    .woocommerce ul.products li.product {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (prefers-contrast: high) {

    /* --- Global Styles --- */
    .btn {
        border: 2px solid currentColor;
    }

    /* --- Header --- */
    .site-header {
        border-bottom-width: 4px;
    }

    /* --- Footer --- */
    .footer-column h3::after {
        height: 4px;
    }

    /* --- Other --- */
    .main-menu a::after {
        height: 3px;
    }

    .professional-card {
        border-width: 2px;
    }

    .professional-heading::after {
        height: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {

    /* --- Other --- */
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

@media print {

    /* --- Other --- */
    .professional-related-categories {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .related-category-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .related-category-card:hover {
        transform: none;
        box-shadow: none;
    }

    .woocommerce div.product {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .sample-request-section,
    .woocommerce div.product form.cart {
        display: none;
    }
}