@font-face {
    font-family: 'ArialNova';
    src: url('fonts/ArialNova.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cardo-Regular';
    src: url('fonts/Cardo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 200px;
    transition: background-color 0.6s ease, box-shadow 0.6s ease, padding 0.6s ease;
    background-color: transparent;
    font-family: 'ArialNova', sans-serif;
}

header nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

header nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.logo-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.logo-item img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

header.scrolled nav ul.nav-links {
    justify-content: flex-end;
}

header.scrolled .logo-item {
    order: -1;
    margin-right: auto;
}

header.scrolled .logo-item img {
    height: 60px;
}

header nav ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: lighter;
    transition: color 0.3s ease;
    display: inline-block;
    padding-bottom: 5px;
}

header.scrolled nav ul li a {
    color: white;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active-link::after {
    width: 100%;
    left: 0;
}

header nav ul li a:hover {
    color: #fff;
}

header nav ul li a.active-link {
    font-weight: bold;
    color: #fff !important;
}

header nav ul li.logo-item a::after {
    display: none !important;
}

/* Black Header Variant for Subpages */
header.black-header {
    background-color: black !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}

header.black-header nav ul.nav-links {
    justify-content: flex-end !important;
}

header.black-header .logo-item {
    order: -1 !important;
    margin-right: auto !important;
}

header.black-header .logo-item img {
    height: 60px !important;
}

header.black-header nav ul li a {
    color: white !important;
}

header.black-header nav ul li a:hover {
    color: #fff !important;
}

/* Shop Top Section */
.shop-top-section {
    padding: 160px 10% 40px;
    /* adjusted for header */
}

.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.shop-filters {
    display: flex;
    gap: 20px;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-family: 'ArialNova', sans-serif;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    color: #000;
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    background-color: #e2e2e2;
    border: none;
    border-radius: 25px;
    padding: 10px 40px 10px 20px;
    font-family: 'ArialNova', sans-serif;
    font-size: 13px;
    color: #555;
    outline: none;
    width: 250px;
}

.search-box input::placeholder {
    color: #888;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #555;
    pointer-events: none;
}

.filter-select {
    background-color: #e2e2e2;
    border: none;
    border-radius: 25px;
    padding: 10px 30px 10px 20px;
    font-family: 'ArialNova', sans-serif;
    font-size: 13px;
    color: #888;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    width: 160px;
}

.filter-select:focus {
    color: #333;
}

.shop-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.shop-actions button,
.shop-actions a {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-actions button:hover,
.shop-actions a:hover {
    transform: scale(1.1);
}

.shop-actions button svg,
.shop-actions a svg {
    width: 24px;
    height: 24px;
}

.shop-welcome-text {
    text-align: center;
}

.shop-welcome-text h2 {
    font-family: 'ArialNova', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .shop-top-bar {
        flex-direction: column;
        gap: 20px;
    }

    .shop-filters {
        flex-direction: column;
        width: 100%;
    }

    .search-box,
    .filter-select {
        width: 100%;
    }

    .search-box input,
    .filter-select {
        width: 100%;
    }

    .shop-actions {
        justify-content: flex-end;
        width: 100%;
    }
}

/* Products Grid */
.products-grid-container {
    padding: 0 10% 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

.product-item {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
    margin-bottom: 15px;
}

.product-name {
    font-family: 'ArialNova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    text-transform: uppercase;
}

.product-price {
    font-family: 'ArialNova', sans-serif;
    font-size: 13px;
    color: #666;
}

.product-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.product-actions button {
    flex: 1;
    padding: 8px 0;
    border: none;
    background-color: #e2e2e2;
    color: #333;
    font-family: 'ArialNova', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-actions button:hover {
    background-color: #333;
    color: white;
}

/* Responsiveness for grid */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Page Specific */
.product-top {
    padding-bottom: 0;
}

.product-view-container {
    padding: 0 10% 100px;
    font-family: 'ArialNova', sans-serif;
}

.product-main {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.product-gallery {
    flex: 1;
}

.product-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
}

.product-price-large {
    font-size: 18px;
    color: #ff4d4d;
    margin-bottom: 30px;
}

.product-option-group {
    margin-bottom: 25px;
}

.option-label {
    font-size: 12px;
    margin-bottom: 10px;
    color: #555;
    text-transform: uppercase;
}

.size-selector {
    display: flex;
    gap: 10px;
}

.size-btn {
    min-width: 40px;
    width: auto;
    padding: 0 10px;
    height: 30px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-family: 'ArialNova', sans-serif;
    transition: all 0.2s;
}

.size-btn.active,
.size-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.color-selector {
    display: flex;
    gap: 15px;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.color-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

.color-item.active img {
    border-color: #333;
}

.color-item span {
    font-size: 10px;
    color: #555;
}

.product-add-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.add-to-cart-btn,
.add-to-wishlist-btn {
    padding: 12px 20px;
    border: none;
    background-color: #e2e2e2;
    color: #333;
    font-family: 'ArialNova', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    flex: 1;
}

.add-to-cart-btn:hover,
.add-to-wishlist-btn:hover {
    background-color: #333;
    color: white;
}

/* Info Sections */
.product-info-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.info-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.size-chart-section {
    text-align: center;
}

.size-chart-section h3 {
    margin-bottom: 20px;
}

.size-chart {
    margin: 0 auto;
    border-collapse: collapse;
}

.size-chart th,
.size-chart td {
    border: 1px solid #333;
    padding: 10px 20px;
    font-size: 12px;
    text-align: center;
}

.size-chart th {
    font-weight: normal;
}

@media (max-width: 768px) {
    .product-main {
        flex-direction: column;
    }

    .product-add-actions {
        flex-direction: column;
    }
}

/* Cart Specific */
.cart-container {
    padding: 0 10% 100px;
    font-family: 'ArialNova', sans-serif;
}

.cart-content {
    display: flex;
    gap: 40px;
}

.cart-items {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #eee;
    padding: 15px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cart-item-size {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-price {
    font-weight: bold;
    color: #ff4d4d;
    font-size: 16px;
    width: 120px;
    text-align: right;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-family: 'ArialNova', sans-serif;
}

.qty-btn:hover {
    background: #e2e2e2;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'ArialNova', sans-serif;
    font-size: 13px;
}

.cart-summary {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-row.total-row {
    font-weight: bold;
    font-size: 18px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    font-family: 'ArialNova', sans-serif;
}

.checkout-btn:hover {
    background: #000;
}

@media (max-width: 768px) {
    .cart-content {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-price {
        text-align: left;
    }
}

/* Checkout Specific */
.checkout-content {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.checkout-instructions {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-instructions h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 2px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.bank-details {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    color: #333;
}

.bank-details p {
    margin-bottom: 8px;
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.bank-details strong {
    font-weight: 600;
}

.dimmed {
    color: #888;
    font-style: italic;
    font-weight: normal;
}

.checkout-form-container {
    flex: 1.5;
    background: #f9f9f9;
    padding: 40px;
    border: 1px solid #eee;
}

.form-header {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #333;
    text-align: center;
}

#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#checkout-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
    font-family: 'ArialNova', sans-serif;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

#checkout-form input:focus {
    border-color: #333;
}

#checkout-form input::placeholder {
    color: #999;
}

.checkout-submit-btn {
    width: 100%;
    padding: 15px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    font-family: 'ArialNova', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.checkout-submit-btn:hover {
    background: #000;
}

.back-to-cart-btn {
    align-self: flex-start;
    margin-top: 30px;
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'ArialNova', sans-serif;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.back-to-cart-btn:hover {
    background: #333;
    color: #fff;
}

#checkout-messages {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.success { color: #4ade80; }
.error { color: #f87171; }

@media (max-width: 768px) {
    .checkout-content {
        flex-direction: column;
    }
    .checkout-form-container {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(to bottom, #050505 0%, #000000 100%);
    color: #fff;
    font-family: 'ArialNova', sans-serif;
    padding: 100px 40px 40px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-top {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: flex-start;
}

.footer-logo {
    flex: 2;
    padding-right: 40px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.05));
    transition: filter 0.4s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.2));
}

.footer-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-col a {
    position: relative;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    padding-bottom: 5px;
    width: fit-content;
}

.footer-links-col a::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%;
    width: 0; 
    height: 1px;
    background: #fff;
    transition: width 0.4s ease, left 0.4s ease;
}

.footer-links-col a:hover {
    color: #fff;
}

.footer-links-col a:hover::after {
    width: 100%;
    left: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-copyright {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsywnosc - Mobile Header (copied from style1) */
.mobile-logo, .hamburger {
    display: none;
}

@media (max-width: 992px) {
    /* Header layout for mobile and tablet: logo on the left, hamburger on the right */
    header, header.black-header {
        padding: 0 30px;
        height: 80px;
        background-color: rgba(5, 5, 5, 0.95) !important;
        /* Fixed solid header on mobile */
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    }

    header nav {
        justify-content: flex-end !important;
        flex-grow: 0;
    }

    .mobile-logo {
        display: block;
        z-index: 101;
    }

    .mobile-logo img {
        height: 40px;
        width: auto;
    }

    header nav ul.nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.4s ease;
        display: flex;
        z-index: 9999;
    }

    header nav ul.nav-links.active {
        left: 0;
    }

    header:not(.scrolled) .logo-item {
        position: static !important;
        transform: none !important;
    }

    header:not(.scrolled) nav ul.nav-links li:nth-child(3) {
        margin-right: 0;
    }

    /* Logo inside mobile menu */
    .logo-item, header.black-header .logo-item {
        order: -1 !important;
        align-self: center !important;
        margin: 0 0 40px 0 !important;
    }

    .logo-item img, header.black-header .logo-item img {
        height: 80px !important;
    }

    /* Hamburger Menu Styles */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
/* Cart Counter */
.cart-btn {
    position: relative;
}
.cart-counter {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #ff4d4d;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ArialNova', sans-serif;
}

/* Dark Mode Overrides for Product Page */
body.b2b-dark-mode {
    background-color: var(--mw-bg-color, #050505);
}

body.b2b-dark-mode .product-top {
    padding-top: 140px;
}

body.b2b-dark-mode .back-link {
    color: #f5f5f5;
}

body.b2b-dark-mode .back-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

body.b2b-dark-mode .shop-actions a {
    color: #f5f5f5;
}

body.b2b-dark-mode .shop-actions a:hover {
    color: #ffc107;
}

body.b2b-dark-mode .product-gallery > img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
}

body.b2b-dark-mode .size-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5f5f5;
}

body.b2b-dark-mode .size-btn:hover,
body.b2b-dark-mode .size-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

body.b2b-dark-mode .color-item span {
    color: #aaa;
}

body.b2b-dark-mode .color-item img {
    border-radius: 10px;
}

body.b2b-dark-mode .color-item.active img {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

body.b2b-dark-mode .size-chart th,
body.b2b-dark-mode .size-chart td {
    border-color: rgba(255, 255, 255, 0.2);
    color: #f5f5f5;
}

body.b2b-dark-mode .size-chart th {
    background: rgba(255, 255, 255, 0.05);
}

body.b2b-dark-mode .footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Dark Mode Overrides for Shop Top Bar */
body.b2b-dark-mode .shop-welcome-text h2 {
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

body.b2b-dark-mode .search-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

body.b2b-dark-mode .search-box input::placeholder {
    color: #aaa;
}

body.b2b-dark-mode .search-icon {
    color: #fff;
}

body.b2b-dark-mode .filter-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
}

body.b2b-dark-mode .filter-select option {
    background-color: #222;
    color: #fff;
}

/* Dark Mode Overrides for Cart */
body.b2b-dark-mode .cart-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.b2b-dark-mode .cart-summary .summary-row {
    color: #a0a0a0;
}

body.b2b-dark-mode .cart-summary .total-row {
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
}

body.b2b-dark-mode .checkout-form-container {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.b2b-dark-mode #checkout-form input {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

body.b2b-dark-mode #checkout-form input:focus {
    border-color: #fff;
}

body.b2b-dark-mode .bank-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}
