/*
Theme Name: Carbotech Performance
Theme URI: https://carbotech.example.com
Author: Your Name
Author URI: https://yoursite.com
Description: High-performance WooCommerce theme for automotive brake parts with dark racing aesthetic
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carbotech
Tags: e-commerce, woocommerce, dark, automotive, performance
*/
html {
    scroll-behavior: smooth;
}
:root {
  --color-dark-bg: #1a1d23;
  --color-darker-bg: #0e0e0e;
  --color-card-bg: #22252b;
  --color-primary-red: #c41e3a;
  --color-primary-red-hover: #a01629;
  --color-text-primary: #ffffff;
  --color-text-secondary: #b8bcc4;
  --color-border: #2d3139;
  --color-border-active: #c41e3a;
  
  --font-heading: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
	width:100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

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

/* Header Styles */
.site-header {
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.site-branding {
    max-width: 200px;
}
.site-logo {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.site-logo span {
  color: var(--color-primary-red);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.main-navigation a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.main-navigation a:hover {
  color: var(--color-primary-red);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary-red);
  color: var(--color-text-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn-secondary {
  background-color: var(--color-card-bg);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary-red);
  background-color: rgba(196, 30, 58, 0.1);
}

/* Footer */
.site-footer {
  background-color: var(--color-darker-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 20px;
/*   margin-top: 80px; */
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav a {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--color-primary-red);
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo-item {
  width: 60px;
  height: 60px;
  background-color: var(--color-card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-logo-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-copyright {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 13px;
  opacity: 0.6;
}
.wp-block-woocommerce-product-filter-attribute:not(:last-child) .wc-block-product-filter-checkbox-list__items {
    max-height: 250px;
    overflow-y: scroll;
}
.wc-block-product-filter-checkbox-list__show-more {
    color: #fff !important;
    cursor: pointer;
}
main#main {
    margin: 50px 0;
}
body.home main#main{
	margin:0;
}
section.featured-products-section .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
}
section.product-categories-section .baseDesc {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 50px;
}
li#menu-item-9488 a {
    display: inline;
    width: 100%;
    background-color: var(--color-primary-red);
    color: var(--color-text-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
li#menu-item-9488 a:hover{
    background-color: var(--color-primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}
.woocommerce-cart .entry-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
}
.ctaSectionCt .secWrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ctaSectionCt .secWrap .baseDesc {
    margin: 0;
    text-align: left;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.ctaSectionCt .secWrap .baseImage {
    padding-left: 50px
}

.ctaSectionCt .secWrap .baseImage img {
    transition: all .5s ease-In-Out
}

.ctaSectionCt .secWrap:hover .baseImage img {
    transform: skew(-10deg,5deg)
}

.ctaSectionCt .secWrap .baseDesc h4 {
    font-size: 28px;
}

.ctaSectionCt .secWrap .baseDesc h4 span {
    color: #c41e3a
}

.ctaSectionCt .secWrap .baseDesc h2 {
    font-size: 42px;
    -webkit-text-stroke: 2px #c41e3a
}
.search-fields {
    display: inline-block;
    position: relative;
    width: 100%;
}
.search-container .select2-container {
    width: calc(100% / 3);
}
.ctaSectionCt .secWrap .baseDesc h4 a {
    display: inline;
    width: 100%;
    background-color: var(--color-primary-red);
    color: var(--color-text-primary);
    border: none;
    padding: 3px 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
    transition: var(--transition);
}

.ctaSectionCt .secWrap:hover .baseDesc h4 a {
    background-color: var(--color-primary-red-hover);
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 16px rgba(196, 30, 58, .4);
}
span.select2.select2-container.select2-container--default,
.search-container .select2-container{
    width: calc(100% / 3 - 6px) !important;
}
.page-template-page-fitment-results .search-container .select2-container {
    width: calc(100% / 4 - 10px) !important;
    margin: 0 5px !important;
}
.search-fields .search-container .select2-container .select2-selection--single {
    height: 44px;
}
span.select2.select2-container.select2-container--classic span.selection span.select2-selection {
	border-radius: 0px;
	overflow: hidden !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f6f6f6;
}
span.select2.select2-container.select2-container--classic span.selection span.select2-selection span.select2-selection__arrow {
    height: 42px;
    width: 38px;
    border-radius: 0px 10px 12px 0px;
    border: none;
}
span.select2.select2-container.select2-container--classic span.selection span.select2-selection span.select2-selection__arrow b {
    border-width: 8px 7px 0 7px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-color: #000000 transparent transparent transparent;
}
button.select2-selection__clear {
    padding: 0;
    order: 1;
    margin-right: 50px !important;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
    width: 100% !important;
    padding: 0 5px 0 10px !important;
}
/*span.select2.select2-container.select2-container--classic {*/
/*    width: calc(100% / 3 - 10px) !important;*/
/*    margin: 5px 5px !important;*/
/*}*/
span.select2.select2-container.select2-container--classic:nth-of-type(2) {
    margin: 0 9px;
}
.select2-results ul {
    color: #000 !important;
}
/*span.select2.select2-container.select2-container--classic.select2-container--disabled * {*/
/*    cursor: not-allowed !important;*/
/*    opacity:0.8;*/
/*}*/
form.woocommerce-ordering {
    display: none;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label,
.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__label{
    color: #000;
}
.woocommerce-cart .wc-block-components-address-card * {
    color: #fff !important;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background: #c21e3a !important;
    font-weight: bold !important;
}

/* HOME CSS */
/* Homepage Hero */
.home .homepage-hero {
    background: linear-gradient(135deg, var(--color-darker-bg) 0%, var(--color-dark-bg) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.home .homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.15) 50%, rgba(196, 30, 58, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.home .homepage-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home .hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.home .text-highlight {
    color: var(--color-primary-red);
}

.home .vehicle-search-form {
    background-color: rgba(34, 37, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.home .search-fields {
    display: inline-block;
    position: relative;
}

.home .search-select,
.home .search-input {
    padding: 14px 16px;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 15px;
}

.home .search-select:focus,
.home .search-input:focus {
    outline: none;
    border-color: var(--color-primary-red);
}

.home .hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Product Categories Section */
.home .product-categories-section {
    padding: 80px 0;
}

.home .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home .category-card {
    background: linear-gradient(135deg, var(--color-primary-red) 0%, rgba(196, 30, 58, 0.6) 100%);
    border-radius: var(--border-radius);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.home .category-card::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%);
    opacity: 0;
    transition: var(--transition);
}

.home .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(196, 30, 58, 0.4);
}

.home .category-card:hover::before {
    opacity: 1;
}

.home .category-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.home .category-image img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.home .category-title {
    font-size: 22px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.home .category-link {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
	transition: var(--transition);
	z-index: 1;
    position: relative;
}

.home .category-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Featured Products Section */
.home .featured-products-section {
    padding: 80px 0;
    background-color: var(--color-darker-bg);
}

.home .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .home .homepage-hero .container {
        grid-template-columns: 1fr;
    }
    
    .home .hero-image {
        order: -1;
    }
    
    .home .hero-title {
        font-size: 42px;
    }
    
    .home .search-fields {
        grid-template-columns: 1fr;
    }
    
    .home .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home .hero-title {
        font-size: 32px;
    }
    
    .home .categories-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================
   ORDER SUCCESS PAGE - CARBOTECH
================================== */

.woocommerce-order {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    color: #ffffff;
}

/* Thank You Message */
.woocommerce-notice--success {
    background: linear-gradient(90deg, #c8102e, #8b0f22);
    border: none;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 40px;
}

/* ================================
   ORDER OVERVIEW (Top Summary)
================================== */

.woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0 0 50px 0;
    list-style: none;
}

.woocommerce-order-overview li {
    background: #111827;
    border: 1px solid #1f2937;
    padding: 25px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce-order-overview li strong {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    color: #ffffff;
}

/* Highlight total */
.woocommerce-order-overview__total {
    border: 1px solid #c8102e;
    background: #0f172a;
}

.woocommerce-order-overview__total strong {
    color: #c8102e;
    font-size: 20px;
}

/* ================================
   ORDER DETAILS TABLE
================================== */

.woocommerce-order-details__title {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
    border-left: 4px solid #c8102e;
    padding-left: 15px;
}

.woocommerce-table {
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.woocommerce-table thead {
    background: #0f172a;
}

.woocommerce-table thead th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 18px;
    border-bottom: 1px solid #1f2937;
}

.woocommerce-table tbody td {
    padding: 18px;
    border-bottom: 1px solid #1f2937;
}

.woocommerce-table tfoot th,
.woocommerce-table tfoot td {
    padding: 16px 18px;
    border-top: 1px solid #1f2937;
}

.woocommerce-table tfoot tr:last-child td {
    font-size: 18px;
    font-weight: 700;
    color: #c8102e;
}

.woocommerce-table a {
    color: #ffffff;
    text-decoration: none;
}

.woocommerce-table a:hover {
    color: #c8102e;
}

/* ================================
   UPS TRACKING CARD
================================== */

.woocommerce-order-details > div[style*="box-shadow"] {
    background: #111827 !important;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1f2937;
    box-shadow: 0 0 25px rgba(0,0,0,0.4) !important;
}

.woocommerce-order-details > div[style*="box-shadow"] > div:first-child {
    background: #0f172a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #1f2937;
}

/* Tracking green status bar */
.woocommerce-order-details div[style*="background-color:#4CBB87"] {
    background: linear-gradient(90deg, #059669, #047857) !important;
    font-weight: 500;
}

/* Remove inline divider */
.woocommerce-order-details span[style*="border-left"] {
    display: none !important;
}

/* Timeline adjustments */
.woocommerce-order-details ul {
    padding: 25px !important;
}

.woocommerce-order-details li {
    font-size: 15px !important;
}

/* ================================
   BILLING & SHIPPING CARDS
================================== */

.woocommerce-customer-details {
    margin-top: 60px;
}

.woocommerce-column__title {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid #c8102e;
    padding-left: 12px;
    margin-bottom: 20px;
}

.woocommerce-column {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.woocommerce-column address {
    font-style: normal;
    line-height: 1.8;
    font-size: 15px;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 10px;
    color: #cbd5e1;
}

/* ================================
   RESPONSIVE
================================== */

@media (max-width: 768px) {

    .woocommerce-order {
        margin: 30px auto;
    }

    .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }

    .woocommerce-columns--2 {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-column {
        width: 100% !important;
    }
}
.woocommerce ul.order_details::after, .woocommerce ul.order_details::before {
    display: none;
}
.woocommerce ul.order_details li {
    float: left;
    margin-right: 2em;
    text-transform: uppercase;
    font-size: .715em;
    line-height: 1;
    border-right: 1px dashed #cfc8d8;
    padding-right: 2em;
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    padding: 20px;
    border: none;
    box-shadow: 0px 2px 15px -6px #c41e3a;
}
section.pageTitleArea {
    margin-top: -50px;
    height: 250px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-darker-bg) 0%, var(--color-dark-bg) 100%), '/wp-content/uploads/2026/02/questions.png';
    overflow: hidden;
    position: relative;
    color:#c41e3a;
    font-size:26px;
    margin-bottom:50px;
}
section.pageTitleArea::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.15) 50%, rgba(196, 30, 58, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
/* =====================================
   CARBOTECH CART PAGE (Woo Blocks)
===================================== */

.woocommerce-cart .wc-block-cart {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    color: #ffffff;
}

/* Layout spacing */
.woocommerce-cart .wc-block-components-sidebar-layout {
    gap: 40px;
	flex-wrap:nowrap;
}

/* =====================================
   CART TABLE (LEFT SIDE)
===================================== */

.woocommerce-cart .wc-block-cart-items {
    background: #111827 !important;
    border: 1px solid #1f2937;
    border-radius: 10px;
    overflow: hidden;
}

/* Header */
.woocommerce-cart .wc-block-cart-items__header {
    background: #0f172a;
}

.woocommerce-cart .wc-block-cart-items__header th {
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-bottom: 1px solid #1f2937;
}

/* Product rows */
.woocommerce-cart .wc-block-cart-items__row {
    border-bottom: 1px solid #1f2937;
}

.woocommerce-cart .wc-block-cart-item__image img {
    border-radius: 6px;
    border: 1px solid #1f2937;
}

.woocommerce-cart .wc-block-components-product-name {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

.woocommerce-cart .wc-block-components-product-name:hover {
    color: #c8102e;
}

/* Price */
.woocommerce-cart .wc-block-components-product-price__value {
    color: #cbd5e1;
    font-weight: 500;
}

/* Description */
.woocommerce-cart .wc-block-components-product-metadata__description {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 6px;
}

/* =====================================
   QUANTITY SELECTOR
===================================== */

.woocommerce-cart .wc-block-components-quantity-selector {
    margin-top: 15px;
}

.woocommerce-cart .wc-block-components-quantity-selector__input {
    background: #0f172a;
    border: 1px solid #1f2937;
    color: #ffffff;
    height: 40px;
    border-radius: 4px;
}

.woocommerce-cart .wc-block-components-quantity-selector__button {
    background: #1f2937;
    border: none;
    color: #ffffff;
    font-size: 18px;
    transition: 0.2s ease;
}

.woocommerce-cart .wc-block-components-quantity-selector__button:hover {
    background: #c8102e;
}

/* Remove link */
.woocommerce-cart .wc-block-cart-item__remove-link {
    margin-top: 10px;
    color: #ef4444;
    font-size: 13px;
}

.woocommerce-cart .wc-block-cart-item__remove-link:hover {
    color: #ffffff;
}

/* =====================================
   SIDEBAR - TOTALS
===================================== */

.woocommerce-cart .wc-block-cart__sidebar {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 30px;
    height: fit-content;
}

.woocommerce-cart .wc-block-cart__totals-title {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid #c8102e;
    padding-left: 12px;
    margin-bottom: 25px;
}

/* Totals rows */
.woocommerce-cart .wc-block-components-totals-item {
    padding: 12px 0;
    border-bottom: 1px solid #1f2937;
    font-size: 15px;
}

.woocommerce-cart .wc-block-components-totals-item__label {
    color: #cbd5e1;
}

.woocommerce-cart .wc-block-components-totals-item__value {
    font-weight: 600;
    color: #ffffff;
}

/* Estimated Total Highlight */
.woocommerce-cart .wc-block-components-totals-footer-item {
    border-top: 2px solid #c8102e;
    margin-top: 15px;
    padding-top: 20px;
}

.woocommerce-cart .wc-block-components-totals-footer-item__value {
    font-size: 20px;
    font-weight: 700;
    color: #c8102e;
}

/* =====================================
   COUPON PANEL
===================================== */

.woocommerce-cart .wc-block-components-panel__button {
    font-size: 14px;
    color: #ffffff;
    padding: 12px 0;
}

.woocommerce-cart .wc-block-components-panel__button:hover {
    color: #c8102e;
}

/* =====================================
   EXPRESS PAYMENT (Stripe)
===================================== */

.woocommerce-cart .wc-block-components-express-payment {
    margin-top: 25px;
}

.woocommerce-cart .wc-block-components-express-payment-continue-rule {
    color: #94a3b8;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================
   CHECKOUT BUTTON
===================================== */

.woocommerce-cart .wc-block-cart__submit-button {
    background: linear-gradient(90deg, #c8102e, #8b0f22);
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.woocommerce-cart .wc-block-cart__submit-button:hover {
    background: #ffffff;
    color: #000000;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0;
    padding-right: 0;
    width: auto;
}
/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1024px) {

    .woocommerce-cart .wc-block-components-sidebar-layout {
        flex-direction: column;
    }

    .woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .woocommerce-cart .wc-block-cart-items__header {
        display: none;
    }

    .woocommerce-cart .wc-block-cart-items__row {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .woocommerce-cart .wc-block-cart-item__total {
        margin-top: 15px;
        font-weight: 600;
    }
}
/* =====================================================
   CARBOTECH PERFORMANCE CHECKOUT
   Black / Red Performance Styling
   Scoped to body.woocommerce-checkout
===================================================== */

/*body.woocommerce-checkout {*/
/*    background: #0e0e0e;*/
/*    color: #ffffff;*/
/*}*/

/* Main Checkout Container */
body.woocommerce-checkout .wc-block-checkout:first-child {
    background: #111111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 40px;
}

/* Layout spacing */
/* body.woocommerce-checkout .wc-block-components-sidebar-layout {
    gap: 40px;
} */
.woocommerce-cart .wc-block-components-sidebar-layout
Specificity: (0,2,0)
 {
    gap: 40px;
    flex-wrap: nowrap;
}
/* ==========================================
   Section Containers (Contact, Shipping, Payment)
========================================== */
body.woocommerce-checkout .wc-block-components-checkout-step {
    background: #151515;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
}

/* Section Titles */
body.woocommerce-checkout .wc-block-components-checkout-step__title {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ==========================================
   EXPRESS CHECKOUT
========================================== */
body.woocommerce-checkout .wc-block-components-express-payment {
    background: #181818;
    border: 1px solid #2a2a2a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

body.woocommerce-checkout .wc-block-components-express-payment__title {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Divider */
body.woocommerce-checkout .wc-block-components-express-payment-continue-rule {
    color: #888;
}

/* ==========================================
   FORM INPUTS
========================================== */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    border-radius: 4px;
    padding: 12px;
    transition: all 0.3s ease;
}

/* Focus state (Red glow) */
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-blocks-components-select__select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
    border-color: #cc0000;
    box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.4);
    outline: none;
}

/* Labels */
body.woocommerce-checkout label {
    color: #bbbbbb;
}

/* ==========================================
   CHECKBOXES
========================================== */
body.woocommerce-checkout .wc-block-components-checkbox__input:checked + svg {
    fill: #cc0000;
}

/* ==========================================
   SHIPPING & PAYMENT METHOD BOXES
========================================== */
body.woocommerce-checkout .wc-block-components-shipping-rates-control{
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 15px;
    border-radius: 6px;
}

/* Selected option */
body.woocommerce-checkout .wc-block-components-radio-control__input:checked + .wc-block-components-radio-control__label {
    color: #ff0000;
    font-weight: 600;
}

/* ==========================================
   ORDER SUMMARY SIDEBAR
========================================== */
body.woocommerce-checkout .wc-block-components-sidebar {
    background: #151515;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 25px;
}

/* Totals section */
body.woocommerce-checkout .wc-block-components-totals-wrapper {
    border-top: 1px solid #333;
    padding-top: 15px;
}
body.woocommerce-checkout .wc-block-components-totals-wrapper:empty {
    display: none;
}
body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value {
    color: #ffffff;
}

/* ==========================================
   BUTTONS (Performance Red)
========================================== */
body.woocommerce-checkout .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    background: linear-gradient(90deg, #b30000, #ff0000);
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
body.woocommerce-checkout .wc-block-components-button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: translateY(-2px);
}

/* ==========================================
   NOTICES / WARNINGS
========================================== */
body.woocommerce-checkout .wc-block-components-notice-banner {
    background: #2a0d0d;
    border-left: 4px solid #cc0000;
    color: #ffffff;
}

/* Remove white backgrounds from random Woo elements */
body.woocommerce-checkout .wc-block-components-card,
body.woocommerce-checkout .wc-block-components-panel {
    background: #151515;
    border-color: #222;
}
.wc-block-components-radio-control.wc-block-components-radio-control--highlight-checked.wc-block-components-radio-control--highlight-checked--first-selected.wc-block-components-radio-control--highlight-checked--last-selected.disable-radio-control {
    padding: 0;
}
.type-page .entry-content p {
    font-size: 18px;
    line-height: 40px;
}
.type-page .entry-content .wp-block-heading.has-text-align-center {
    margin-top: 40px;
}
article#post-9 .wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block.is-large {
    min-width: 400px;
    margin-left: 40px;
}

article#post-9 {
    margin-top: 50px;
}
article#post-9 .wc-block-components-sidebar-layout{
	flex-wrap:nowrap;
}
/* ===============================
   CARBOTECH ADVANTAGE HD SECTIONS
=================================*/

.ct-advantage-section,
.ct-confidence-section {
    background: #000;
    color: #fff;
    padding: 100px 20px;
}

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

.ct-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.ct-col {
    flex: 1;
    min-width: 300px;
}

.ct-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ct-section-title span {
    color: #e10600;
}

.ct-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #e10600;
    text-transform: uppercase;
}

.ct-feature {
    margin-bottom: 35px;
}

.ct-feature h4 {
    color: #e10600;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-feature p {
    color: #ccc;
    line-height: 1.7;
    font-size: 16px;
}

/* Confidence Section */

.ct-confidence-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ct-confidence-box h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ct-tagline {
    color: #e10600;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.ct-order-box {
    margin-top: 50px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(145deg, #0c0c0c, #111);
}

.ct-order-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ct-phone-btn {
    display: inline-block;
    margin: 20px 0;
    padding: 15px 35px;
    background: #e10600;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.ct-phone-btn:hover {
    background: #ff1a1a;
}

.ct-hours {
    color: #aaa;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {
    .ct-row {
        flex-direction: column;
    }

    .ct-section-title,
    .ct-confidence-box h2 {
        font-size: 32px;
    }
}
/* ==========================================
   CARBOTECH CONTACT PAGE
========================================== */

.ct-contact-hero,
.ct-contact-details {
    background: #000;
    color: #fff;
    padding: 100px 20px;
}

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

.ct-contact-title {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ct-contact-title span {
    color: #e10600;
}

.ct-contact-subtitle {
    color: #e10600;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ct-contact-intro {
    max-width: 750px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 60px;
}

.ct-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ct-contact-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    transition: 0.3s ease;
}

.ct-contact-card:hover {
    border-color: #e10600;
    transform: translateY(-5px);
}

.ct-contact-card h4 {
    color: #e10600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ct-contact-card a {
    color: #fff;
    text-decoration: none;
}

.ct-contact-card a:hover {
    color: #e10600;
}

/* Layout */

.ct-contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.ct-form-section {
    flex: 1;
    min-width: 320px;
}

.ct-info-section {
    flex: 1;
    min-width: 320px;
}

/* Form */

.ct-contact-form {
    display: flex;
    flex-direction: column;
}

.ct-contact-form label {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #bbb;
}

.ct-contact-form input,
.ct-contact-form textarea {
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    transition: 0.3s ease;
}

.ct-contact-form input:focus,
.ct-contact-form textarea:focus {
    border-color: #e10600;
    box-shadow: 0 0 0 2px rgba(225,6,0,0.3);
    outline: none;
}

.ct-submit-btn {
    margin-top: 30px;
    padding: 15px;
    background: #e10600;
    color: #fff;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.ct-submit-btn:hover {
    background: #ff1a1a;
}

/* Hours + Team */

.ct-hours-box,
.ct-team-box {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    margin-bottom: 40px;
}

.ct-hours-box h3,
.ct-team-box h3 {
    color: #e10600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ct-hours-box ul {
    list-style: none;
    padding: 0;
}

.ct-hours-box li {
    margin-bottom: 10px;
    color: #ccc;
}

.ct-hours-box li span {
    color: #fff;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
    .ct-contact-title {
        font-size: 36px;
    }

    .ct-contact-layout {
        flex-direction: column;
    }
}
.ct-contact-form label,
.ct-contact-form .wpcf7-form-control-wrap,
.ct-contact-form .wpcf7-form-control-wrap input,
.ct-contact-form .wpcf7-form-control-wrap textarea{
    display: inline-block;
    width: 100%;
}

.product-price {
    margin: 0;
}
section.fitment-products .products-grid {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}
section.fitment-products .products-grid .product-card {
    max-width: calc(100% / 3 - 20px);
    min-width: calc(100% / 3 - 20px);
}
.woocommerce-cart section.featured-products-section {
    display: none;
}
.wc-block-components-product-metadata__description p {
    font-size: 12px !important;
    line-height: 17px !important;
}
.home .vehicle-search-form {
    margin-right: -100px;
    margin-top: 20px;
}
.shop-products .no-products {
    margin: 50px 0;
    text-align: center;
}
.wc-block-cart-items__row .wc-block-cart-item__prices, .wc-block-cart-items__row .wc-block-components-product-metadata .wc-block-components-product-metadata__description {
    display: none;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0;
    padding-right: 0;
    width: calc(100% - 350px);
}
.wc-block-components-product-metadata .wc-block-components-product-metadata__description,
span.wc-block-components-order-summary-item__individual-prices.price.wc-block-components-product-price {
    display: none;
}
select#shipping-state {
    filter: invert(1) brightness(1.5);
}
select#shipping-state, select#shipping-country {
    filter: invert(1) brightness(1.5);
}
.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    min-width: max-content;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
}
.hero-content .search-fields select#brake_pad_type ~ span.select2.select2-container.select2-container--classic {
    margin-top: 10px;
    min-width: 100%;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
    background: #fff;
    color: #000;
    line-height: 40px;
    font-size: 16px;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
    padding: 12px 12px 0 !important;
}
@media (min-width:768px) and (max-width:1024px){
	.home .search-fields span.select2.select2-container.select2-container--classic:nth-of-type(2){
		margin: 0 10px !important;
	}
	span.select2.select2-container.select2-container--default, .search-container .select2-container {
		width: calc(100% / 2 - 10px) !important;
		margin: 0px 0 10px !important;
	}
	.home .vehicle-search-form {
		margin-right: 0px;
		margin-top: 20px;
	}
	button.mobile-menu-toggle {
		display: none;
	}
	.hero-image {
		margin: -100px 90px;
	}
	section.fitment-products .products-grid .product-card {
		max-width: calc(100% / 2 - 20px);
		min-width: calc(100% / 2 - 20px);
	}
}
@media (max-width:767px){
	.home .hero-image {
		margin: -60px 0px;
	}
	.home .vehicle-search-form {
		margin: 20px 0 0;
	}
	.home .vehicle-search-form .search-container select {
		min-width: inherit;
		max-width: inherit;
	}
	.home .vehicle-search-form .search-container span.select2.select2-container.select2-container--classic,
	.home .vehicle-search-form .search-container span.select2.select2-container.select2-container--classic:nth-of-type(2),
	span.select2.select2-container.select2-container--classic{
		width: 100% !important;
		margin: 0 0 10px;
	}
	.home .product-categories-section, .ct-advantage-section, .ct-confidence-section {
		padding: 40px 20px;
	}
	br {
		display: none;
	}
	.ct-row {
		gap: 20px;
	}
	.ct-phone-btn {
		padding: 10px 10px;
	}
	nav.footer-nav ul li {
		display: inline-block;
		min-width: 50%;
		float: left;
	}
	.footer-nav ul {
		display: inline-block;
	}
	section.fitment-products .products-grid .product-card {
        max-width: 100%;
        min-width: 100%;
    }
    section.fitment-products .products-grid .product-card .product-image-wrapper {
        display: none;
    }
    .product-info {
        padding: 15px;
    }
    .product-price {
        margin: 0;
    }
    .product-description {
        margin: 0;
    }
    section.fitment-products .products-grid {
        margin-bottom: 0;
    }
    .shop-products {
        min-height: inherit !important;
    }
    span.select2.select2-container.select2-container--classic {
        margin: 10px 0 !important;
    }
	table.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block {
		width:100%;
	}
	.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
		width:100%;
	}
	nav.main-navigation {
		width: 100%;
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		margin-top: 110px;
		z-index: 1;
	}
	nav.main-navigation ul li {
		display: inline-block;
		width: 100%;
		padding: 6px 0;
	}
	nav.main-navigation ul {
		display: inline-block;
		width: 100%;
		background: #23262c;
		padding: 20px;
	}
	button.mobile-menu-toggle {
		width: 40px;
		height: 40px;
		background: transparent;
		border: 2px solid #c10e2f;
		padding: 4px;
		border-radius: 8px;
		order: 1;
	}
	button.mobile-menu-toggle span {
		width: 100%;
		height: 2px;
		background: #c10e2f;
		display: flex;
		margin: 5px 0;
	}
	nav.main-navigation:not(.active) {
		display: none;
	}
	.woocommerce-cart .wc-block-components-sidebar-layout {
		gap: 0px;
	}
	.woocommerce-cart section.pageTitleArea {
		margin-bottom: 0px;
	}
	main#main {
		margin-bottom: 0 !important;
	}
	.wc-block-components-sidebar-layout.wc-block-checkout.is-mobile > div {
		width: 100%;
	}
	body.woocommerce-checkout .wc-block-checkout:first-child {
		padding: 0;
		border: 0;
		background: transparent;
	}
}
.page-id-16327 hr.wp-block-separator.has-alpha-channel-opacity {
    margin: 40px 0;
}

.page-id-16327 ul.wp-block-list {
    margin-left: 30px;
}

.page-id-16327 h2, .page-id-16327 h1, .page-id-16327 h3 {
    color: #c22032;
}
.wc-block-components-checkbox.has-error span.wc-block-components-checkbox__label {
    color: #e20000;
}

.wc-block-components-checkbox{
    padding-bottom:10px;
}

.wc-block-components-checkbox.has-error {border-bottom: 1px solid #df0000;padding-bottom: 10px;}