/*
Theme Name: Signal & Structure
Author: WordPress Telex
Description: A premium, dark-mode WordPress block theme for modern service businesses. Precision-engineered aesthetics with electric cyan accents, monospace details, and data-driven visual language. Built for agencies, consultants, and professional service firms selling through WooCommerce.
Version: 0.3.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: signal-and-structure
Tags: block-theme, full-site-editing, dark-mode, woocommerce, services

Signal & Structure — Precision-engineered for service businesses.
*/

/* ===== Global Animations ===== */
@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(77, 175, 255, 0); }
    50% { opacity: 0.5; box-shadow: 0 0 10px rgba(77, 175, 255, 0.3); }
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Scanline Texture ===== */
.scanline-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
        linear-gradient(90deg, rgba(77, 175, 255, 0.03), rgba(0, 255, 120, 0.01), rgba(77, 175, 255, 0.03));
    background-size: 100% 2px, 3px 100%;
}

/* ===== Status Pill ===== */
.status-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(42, 42, 56, 0.8);
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.status-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #4DAFFF;
    border-radius: 50%;
    box-shadow: 0 0 8px #4DAFFF;
    animation: pulse-glow 2s infinite;
    flex-shrink: 0;
}

/* ===== Cursor Blink Effect ===== */
.cursor-blink::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background-color: #4DAFFF;
    margin-left: 6px;
    vertical-align: middle;
    animation: blink-cursor 1s step-end infinite;
}

/* ===== Metric Items ===== */
.metric-item {
    border-left: 1px solid rgba(42, 42, 56, 0.8);
    padding-left: 1.5rem;
}

.metric-item:first-child,
.metric-item.no-border {
    border-left: none;
    padding-left: 0;
}

/* ===== Card Styles ===== */
.service-card {
    background: rgba(22, 22, 31, 0.6) !important;
    border: 1px solid rgba(42, 42, 56, 0.6) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(77, 175, 255, 0.3) !important;
    box-shadow: 0 0 30px rgba(77, 175, 255, 0.08);
    transform: translateY(-2px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4DAFFF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* ===== Case Study Card ===== */
.case-study-card {
    background: rgba(22, 22, 31, 0.4) !important;
    border: 1px solid rgba(42, 42, 56, 0.5) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    overflow: hidden;
}

.case-study-card:hover {
    border-color: rgba(77, 175, 255, 0.3) !important;
    box-shadow: 0 0 30px rgba(77, 175, 255, 0.08);
    transform: translateY(-3px);
}

.case-study-card img {
    transition: transform 0.4s ease;
}

.case-study-card:hover img {
    transform: scale(1.03);
}

/* ===== Differentiator Card ===== */
.diff-card {
    background: transparent !important;
    border: 1px solid rgba(42, 42, 56, 0.4) !important;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.diff-card:hover {
    border-color: rgba(77, 175, 255, 0.2) !important;
    background: rgba(22, 22, 31, 0.3) !important;
}

/* ===== Process Step Numbers ===== */
.step-number {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ===== Divider Lines ===== */
.cyan-divider {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(77, 175, 255, 0.4), transparent) !important;
}

/* ===== Equal Cards Layout ===== */
.equal-cards > .wp-block-column {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.equal-cards > .wp-block-column > .wp-block-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.equal-cards .cta-bottom {
    margin-top: auto;
    justify-content: center;
}

/* ===== Buttons ===== */
.wp-block-button.is-style-outline .wp-block-button__link {
    border-width: 1px;
}

.wp-block-button__link {
    transition: all 0.2s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
}

.btn-primary .wp-block-button__link:hover {
    box-shadow: 0 0 20px rgba(77, 175, 255, 0.4);
}

/* ===== Nav Button ===== */
.nav-btn .wp-block-button__link {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: -0.03em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(42, 42, 56, 0.8);
    background: transparent;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.nav-btn .wp-block-button__link:hover {
    border-color: #4DAFFF;
    color: #4DAFFF;
}

/* ===== Logo Dot ===== */
.logo-dot::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4DAFFF;
    border-radius: 50%;
    margin-left: 0.4rem;
    vertical-align: middle;
}

/* ===== Glassmorphic Panel ===== */
.glass-panel {
    background: rgba(22, 22, 31, 0.6) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

/* ===== Testimonial Card ===== */
.testimonial-card {
    background: rgba(22, 22, 31, 0.4) !important;
    border: 1px solid rgba(42, 42, 56, 0.5) !important;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(77, 175, 255, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===== Footer ===== */
.wp-site-blocks > footer {
    margin-block-start: 0;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 782px) {
    .metric-item {
        border-left: none;
        border-bottom: 1px solid rgba(42, 42, 56, 0.6);
        padding-left: 0;
        padding-bottom: 1rem;
    }

    .metric-item:last-child {
        border-bottom: none;
    }
}

/* ===== Fade-in animation for sections ===== */
@media (prefers-reduced-motion: no-preference) {
    .animate-in {
        animation: fade-in-up 0.6s ease both;
    }

    .animate-delay-1 { animation-delay: 0.1s; }
    .animate-delay-2 { animation-delay: 0.2s; }
    .animate-delay-3 { animation-delay: 0.3s; }
    .animate-delay-4 { animation-delay: 0.4s; }
}

/* ===== FAQ Accordion ===== */
.faq-item {
    border-bottom: 1px solid rgba(42, 42, 56, 0.6) !important;
    padding: 1.5rem 0 !important;
}

.faq-item:last-child {
    border-bottom: none !important;
}

.faq-accordion details {
    border-bottom: 1px solid rgba(42, 42, 56, 0.6);
    padding: 0;
}

.faq-accordion details:last-child {
    border-bottom: none;
}

.faq-accordion details summary {
    color: #FFFFFF;
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 500;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-accordion details summary::-webkit-details-marker {
    display: none;
}

.faq-accordion details summary::after {
    content: '+';
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    color: #4DAFFF;
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-accordion details[open] summary::after {
    content: '\2212';
}

.faq-accordion details summary:hover {
    color: #4DAFFF;
}

.faq-accordion details .faq-answer {
    color: #B8B8CC;
    font-size: 0.9rem;
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* ===== Section Label ===== */
.section-label {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Result Metric Highlight ===== */
.result-metric {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace !important;
    color: #4DAFFF !important;
    font-size: 1.5rem !important;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* ===== Upsell Card ===== */
.upsell-card {
    background: rgba(22, 22, 31, 0.4) !important;
    border: 1px solid rgba(42, 42, 56, 0.5) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.upsell-card:hover {
    border-color: rgba(77, 175, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(77, 175, 255, 0.06);
}

/* ===== Trust Badge Styles ===== */
.trust-badge-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.75rem;
    color: #B8B8CC;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trust-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #4DAFFF;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(135deg, #4DAFFF 0%, #7BC8FF 50%, #4DAFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* ===== Post Meta Styling ===== */
.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-meta-bar .wp-block-post-date,
.post-meta-bar .wp-block-post-terms {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== 404 Glitch Effect ===== */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #4DAFFF;
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text::after {
    color: #FF6B6B;
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
    100% { transform: translate(0); }
}

/* ===== WooCommerce Global Adjustments ===== */
.woocommerce .products .product {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
    padding: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.woocommerce .products .product:hover {
    border-color: rgba(77, 175, 255, 0.3);
    box-shadow: 0 0 30px rgba(77, 175, 255, 0.08);
    transform: translateY(-2px);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: #4DAFFF !important;
    color: #000000 !important;
    font-weight: 600;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.2s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(77, 175, 255, 0.4);
    background-color: #6BC1FF !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background-color: #4DAFFF !important;
    color: #000000 !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background-color: #6BC1FF !important;
}

/* ===== WooCommerce Product Page (Single) ===== */
.wc-single-product .woocommerce-product-gallery {
    background: rgba(22, 22, 31, 0.4);
    border: 1px solid rgba(42, 42, 56, 0.6);
    padding: 2rem;
}

.wc-single-product .summary {
    color: #FFFFFF;
}

.wc-single-product .summary .price {
    color: #4DAFFF !important;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 1.75rem !important;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.wc-single-product .woocommerce-product-details__short-description {
    color: #B8B8CC;
    line-height: 1.7;
}

.wc-single-product .product_meta {
    color: #B8B8CC;
    font-size: 0.85rem;
    border-top: 1px solid rgba(42, 42, 56, 0.6);
    padding-top: 1rem;
}

.wc-single-product .product_meta a {
    color: #4DAFFF;
}

/* ===== WooCommerce Tabs ===== */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(42, 42, 56, 0.6);
    background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom-color: rgba(42, 42, 56, 0.6);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: #4DAFFF;
    background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #B8B8CC;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #FFFFFF;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: transparent;
    color: #B8B8CC;
}

/* ===== WooCommerce Quantity ===== */
.woocommerce .quantity .qty {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
    color: #FFFFFF;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
}

/* ===== WooCommerce Shop / Archive ===== */
.wc-shop-grid .wc-block-grid__product,
.wc-shop-grid .product {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    overflow: hidden;
}

.wc-shop-grid .wc-block-grid__product:hover,
.wc-shop-grid .product:hover {
    border-color: rgba(77, 175, 255, 0.3);
    box-shadow: 0 0 30px rgba(77, 175, 255, 0.08);
    transform: translateY(-2px);
}

.wc-shop-grid .wc-block-grid__product-title,
.wc-shop-grid .woocommerce-loop-product__title {
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1.1rem;
}

.wc-shop-grid .wc-block-grid__product-price,
.wc-shop-grid .price {
    color: #4DAFFF !important;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
}

/* ===== WooCommerce Cart ===== */
.wc-block-cart .wc-block-cart__main,
.woocommerce-cart .woocommerce-cart-form {
    color: #FFFFFF;
}

.wc-block-cart .wc-block-components-product-name,
.woocommerce-cart .product-name a {
    color: #FFFFFF !important;
    text-decoration: none;
}

.wc-block-cart .wc-block-components-product-name:hover,
.woocommerce-cart .product-name a:hover {
    color: #4DAFFF !important;
}

.wc-block-cart .wc-block-components-totals-wrapper,
.wc-block-cart .wc-block-components-totals-item {
    border-color: rgba(42, 42, 56, 0.6) !important;
}

.wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
}

/* ===== WooCommerce Checkout ===== */
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout select {
    background: rgba(22, 22, 31, 0.6) !important;
    border: 1px solid rgba(42, 42, 56, 0.6) !important;
    color: #FFFFFF !important;
    border-radius: 0 !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-text-input textarea:focus {
    border-color: #4DAFFF !important;
    box-shadow: 0 0 0 1px rgba(77, 175, 255, 0.2) !important;
}

.wc-block-checkout .wc-block-components-text-input label {
    color: #B8B8CC;
}

.wc-block-checkout .wc-block-components-checkout-step__heading {
    color: #FFFFFF;
}

.wc-block-checkout .wc-block-components-checkout-step__description {
    color: #B8B8CC;
}

.wc-block-checkout .wc-block-components-checkout-step {
    border-color: rgba(42, 42, 56, 0.6);
}

.wc-block-checkout .wc-block-components-order-summary {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
}

.wc-block-checkout .wc-block-components-totals-wrapper {
    border-color: rgba(42, 42, 56, 0.6) !important;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
    background-color: #4DAFFF !important;
    color: #000000 !important;
    font-weight: 600;
    border-radius: 0 !important;
    transition: all 0.2s ease;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(77, 175, 255, 0.4);
}

/* ===== WooCommerce My Account ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
    padding: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(42, 42, 56, 0.4);
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #B8B8CC;
    text-decoration: none;
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: #4DAFFF;
}

.woocommerce-account .woocommerce-MyAccount-content {
    color: #B8B8CC;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #4DAFFF;
}

/* ===== WooCommerce Notices ===== */
.woocommerce-message,
.woocommerce-info {
    background: rgba(22, 22, 31, 0.8) !important;
    border-top-color: #4DAFFF !important;
    color: #B8B8CC !important;
}

.woocommerce-error {
    background: rgba(22, 22, 31, 0.8) !important;
    border-top-color: #FF6B6B !important;
    color: #B8B8CC !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: #4DAFFF !important;
}

/* ===== WooCommerce Forms ===== */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
    color: #FFFFFF;
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #4DAFFF;
    box-shadow: 0 0 0 1px rgba(77, 175, 255, 0.2);
    outline: none;
}

.woocommerce form .form-row label {
    color: #B8B8CC;
    font-size: 0.85rem;
}

/* ===== WooCommerce Tables ===== */
.woocommerce table.shop_table {
    border: 1px solid rgba(42, 42, 56, 0.6);
    border-collapse: collapse;
}

.woocommerce table.shop_table th {
    background: rgba(22, 22, 31, 0.6);
    color: #FFFFFF;
    border-bottom: 1px solid rgba(42, 42, 56, 0.6);
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.woocommerce table.shop_table td {
    background: transparent;
    color: #B8B8CC;
    border-bottom: 1px solid rgba(42, 42, 56, 0.4);
    padding: 1rem;
}

.woocommerce table.shop_table td a {
    color: #FFFFFF;
}

.woocommerce table.shop_table td a:hover {
    color: #4DAFFF;
}

/* ===== WooCommerce Breadcrumbs ===== */
.woocommerce .woocommerce-breadcrumb {
    color: #B8B8CC;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #B8B8CC;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: #4DAFFF;
}

/* ===== WooCommerce Star Rating ===== */
.woocommerce .star-rating span::before {
    color: #4DAFFF;
}

.woocommerce .star-rating::before {
    color: rgba(42, 42, 56, 0.8);
}

/* ===== WooCommerce Sale Badge ===== */
.woocommerce span.onsale {
    background: #4DAFFF;
    color: #000000;
    font-weight: 600;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    padding: 0.25rem 0.75rem;
    min-height: auto;
    min-width: auto;
    line-height: 1.5;
}

/* ===== WooCommerce Block Components Dark Mode ===== */
.wc-block-components-product-metadata {
    color: #B8B8CC;
}

.wc-block-components-product-price {
    color: #4DAFFF;
}

.wc-block-components-quantity-selector {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(42, 42, 56, 0.6);
}

.wc-block-components-quantity-selector input {
    color: #FFFFFF;
    background: transparent;
}

.wc-block-components-quantity-selector button {
    color: #B8B8CC;
    background: transparent;
    border: none;
}

.wc-block-components-quantity-selector button:hover {
    color: #4DAFFF;
}

/* ===== Pagination ===== */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: rgba(22, 22, 31, 0.6);
    border-color: rgba(42, 42, 56, 0.6);
    color: #B8B8CC;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: rgba(77, 175, 255, 0.1);
    border-color: #4DAFFF;
    color: #FFFFFF;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #4DAFFF;
    border-color: #4DAFFF;
    color: #000000;
}

/* ===== Remove Link ===== */
.woocommerce a.remove {
    color: #FF6B6B !important;
}

.woocommerce a.remove:hover {
    background: #FF6B6B !important;
    color: #FFFFFF !important;
}