/*
Theme Name: LK Deals - Bridge Modern Electronics
Theme URI: https://lkdeals.lk
Author: LK Deals Design Team
Author URI: https://lkdeals.lk
Description: Pixel-perfect, ultra-fast replication of the modern Bridge 334 Electronics Store theme. Pure native WordPress & WooCommerce without any heavy page builders.
Version: 3.0.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: lkdeals-electronics
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400&family=Raleway:wght@400;600;700;800&display=swap');

:root {
  --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Raleway', 'Nunito Sans', sans-serif;

  /* Bridge 334 Color Palette */
  --c-blue: #1181fb;
  --c-blue-hover: #0978f0;
  --c-coral: #ff365d;
  --c-coral-hover: #f3284f;
  
  --c-dark: #151515;
  --c-black: #000000;
  --c-text: #6f6f6f;
  --c-text-light: #858585;
  
  --c-bg-white: #ffffff;
  --c-bg-gray: #fafafa;
  --c-bg-light: #f5f6f8;
  
  --c-border: #e1e1e1;
  --c-border-light: #eeeeee;

  --radius-xs: 3px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-pill: 30px;

  --shadow-card: 0 4px 18px 0 rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1300px;
}

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

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 24px;
  color: var(--c-text);
  background-color: var(--c-bg-white);
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 48px; }
h2 { font-size: 34px; font-weight: 700; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; font-weight: 600; }
h6 { font-size: 14px; font-weight: 600; }

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

a:hover {
  color: var(--c-blue);
}

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

.br-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.qbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  height: 40px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--transition);
  white-space: nowrap;
}

.qbutton-blue {
  background-color: var(--c-blue);
  color: #ffffff !important;
}

.qbutton-blue:hover {
  background-color: var(--c-blue-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.qbutton-coral {
  background-color: var(--c-coral);
  color: #ffffff !important;
}

.qbutton-coral:hover {
  background-color: var(--c-coral-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.qbutton-outline {
  background-color: transparent;
  border-color: var(--c-border);
  color: var(--c-dark);
}

.qbutton-outline:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

.qbutton-link {
  background: transparent;
  color: var(--c-blue) !important;
  padding: 0;
  height: auto;
  line-height: normal;
  font-weight: 600;
}

.qbutton-link:hover {
  color: var(--c-blue-hover) !important;
}

/* 1. Header Top Bar */
.br-topbar {
  background-color: #080c16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 13px;
  line-height: 42px;
  height: 42px;
}

.br-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.br-topbar-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.br-topbar-links a {
  color: #94a3b8;
  font-size: 13px;
  transition: var(--transition);
}

.br-topbar-links a:hover {
  color: #ffffff;
}

.br-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.br-social-icon {
  color: #94a3b8;
  font-size: 14px;
  transition: var(--transition);
}

.br-social-icon:hover {
  color: #ffffff;
}

/* 2. Main Navigation Header (Initial Dark Tint Background matching Top Hero) */
.br-header {
  background-color: #0d131f;
  background-image: 
    linear-gradient(135deg, rgba(13, 19, 31, 0.94) 0%, rgba(15, 23, 42, 0.88) 50%, rgba(8, 12, 22, 0.96) 100%),
    var(--hero-bg, url('/wp-content/uploads/2026/09/s2-scaled-1.jpg'));
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.br-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.br-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.br-logo span {
  color: var(--c-blue);
}

.br-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.br-nav-item > a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.br-nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-coral);
  transition: var(--transition);
}

.br-nav-item:hover > a,
.br-nav-item.current-menu-item > a {
  color: #ffffff;
}

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

.br-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.br-search-toggle {
  background: none;
  border: none;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.br-search-toggle:hover {
  color: var(--c-coral);
}

.br-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.25s ease;
}

.br-cart-link:hover {
  color: var(--c-coral);
}

.br-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--c-coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky Header State (Solid White Clean Navbar when scrolled) */
.br-header.is-sticky {
  background: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.br-header.is-sticky .br-logo {
  color: #000000;
}

.br-header.is-sticky .br-nav-item > a {
  color: #000000;
}

.br-header.is-sticky .br-nav-item:hover > a,
.br-header.is-sticky .br-nav-item.current-menu-item > a {
  color: #000000;
}

.br-header.is-sticky .br-search-toggle {
  color: #000000;
}

.br-header.is-sticky .br-search-toggle:hover {
  color: var(--c-blue);
}

.br-header.is-sticky .br-cart-link {
  color: #000000;
}

.br-header.is-sticky .br-cart-link:hover {
  color: var(--c-blue);
}

/* 3. Hero Section (Dark Tint Modern Tech Showcase) */
.br-hero {
  position: relative;
  background-color: #0d131f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0 70px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  color: #ffffff;
}

.br-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 45%, rgba(255, 90, 60, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 20%, rgba(0, 136, 204, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.br-hero-subtitle {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-coral);
  margin-bottom: 14px;
}

.br-hero-title {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.br-hero-title span {
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #f1f5f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.br-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.br-hero-ctas .qbutton-link {
  color: #e2e8f0;
}

.br-hero-ctas .qbutton-link:hover {
  color: var(--c-coral);
}

.br-hero-desc {
  font-size: 16px;
  line-height: 26px;
  color: #cbd5e1;
  max-width: 460px;
  margin-bottom: 24px;
}

.br-hero-shipping {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #94a3b8;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.br-hero-shipping svg {
  color: var(--c-coral);
}

.br-hero-shipping strong {
  font-weight: 700;
  color: #ffffff;
}

.br-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.br-hero-image-wrap img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s ease;
}

/* 4. Section Headings */
.br-section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px auto;
}

.br-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.br-section-subtitle {
  font-size: 15px;
  color: #858585;
  line-height: 24px;
  margin-bottom: 20px;
}

/* Category Filter Tabs */
.br-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-bottom: 40px;
}

.br-filter-tabs a {
  font-size: 14px;
  color: #858585;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.br-filter-tabs a:hover,
.br-filter-tabs a.active {
  color: #000000;
}

.br-filter-tabs a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-blue);
}

/* 5. Product Grid (4 Columns, Bridge 334 Style) */
/* 5. Trending Products Modern Card Grid */
.br-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  justify-items: center;
  gap: 24px;
  margin: 0 auto 50px auto;
  width: 100%;
}

.br-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.br-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.br-product-image-wrap {
  position: relative;
  background-color: #f8fafc;
  padding: 24px 20px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.br-product-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.br-product-thumb,
.br-product-image-wrap img {
  max-height: 195px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.br-product-card:hover .br-product-thumb,
.br-product-card:hover .br-product-image-wrap img {
  transform: scale(1.08);
}

/* Status Badges */
.br-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.br-card-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 6px;
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.br-badge-sale {
  background-color: #ef4444;
}

.br-badge-new {
  background-color: var(--c-coral);
}

.br-badge-sold {
  background-color: #0f172a;
}

/* Floating Quick Actions */
.br-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.br-card-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.br-product-card:hover .br-card-action-btn {
  opacity: 1;
  transform: translateY(0);
}

.br-card-action-btn:hover {
  background-color: var(--c-blue);
  color: #ffffff;
  transform: scale(1.1);
}

/* Product Content & Typography */
.br-product-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.br-product-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.br-product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.br-product-stars {
  font-size: 12px;
  color: #f59e0b;
  letter-spacing: 2px;
  line-height: 1;
}

.br-product-brand-flex {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  max-width: 50%;
}

.br-product-brand-img {
  height: 14px;
  max-width: 32px;
  object-fit: contain;
  display: block;
}

.br-product-brand-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-product-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.br-product-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.br-product-title a:hover {
  color: var(--c-blue);
}

/* Footer / Price & Add to Cart */
.br-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.br-product-price-wrap {
  display: flex;
  flex-direction: column;
}

.br-price-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 3px;
}

.br-product-price {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.br-product-price del {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-right: 4px;
}

.br-product-price ins {
  text-decoration: none;
  color: var(--c-coral);
}

.br-btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #0f172a;
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.br-btn-add-cart:hover {
  background-color: var(--c-coral);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.35);
}

/* 6. Parallax Promotional Full-Width Banners */
.br-promo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  margin: 60px 0;
}

.br-promo-dark {
  background: linear-gradient(90deg, rgba(8, 14, 26, 0.92) 0%, rgba(13, 20, 38, 0.78) 50%, rgba(8, 14, 26, 0.90) 100%), url('assets/images/switchgear-banner-bg.jpg') center/cover no-repeat;
  color: #ffffff;
}

.br-promo-acl {
  background: linear-gradient(90deg, rgba(8, 14, 26, 0.90) 0%, rgba(13, 20, 38, 0.76) 50%, rgba(8, 14, 26, 0.92) 100%), url('assets/images/acl-wires-banner-bg.jpg') center/cover no-repeat;
  color: #ffffff;
}

.br-promo-light {
  background: linear-gradient(rgba(245, 246, 248, 0.85), rgba(245, 246, 248, 0.85)), url('assets/images/acl-wires-banner-bg.jpg') center/cover no-repeat;
  color: var(--c-dark);
}

.br-promo-content {
  max-width: 520px;
}

.br-promo-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: inherit;
}

.br-promo-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: inherit;
}

/* 7. Category Icons Showcase Grid (8 Columns) */
.br-categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.br-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  background-color: var(--c-bg-white);
  transition: var(--transition);
}

.br-cat-tile:hover {
  border-color: var(--c-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.br-cat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.br-cat-name {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
}

/* 8. Deals of the Day / Blog Section (3 Columns) */
.br-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.br-blog-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 25px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.br-blog-thumb {
  height: 200px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  margin-bottom: 20px;
}

.br-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.br-blog-card:hover .br-blog-thumb img {
  transform: scale(1.05);
}

.br-blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}

.br-blog-excerpt {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-text);
  margin-bottom: 16px;
  flex: 1;
}

.br-blog-date {
  font-size: 13px;
  color: var(--c-blue);
  font-weight: 600;
}

/* 9. Footer (Clean Bridge 334 Style) */
.br-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--c-border);
  padding: 70px 0 0 0;
  font-size: 14px;
}

.br-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.br-footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.br-footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.br-footer-list a {
  color: #6f6f6f;
  font-size: 14px;
}

.br-footer-list a:hover {
  color: var(--c-blue);
}

.br-footer-bottom {
  border-top: 1px solid var(--c-border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #858585;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .br-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .br-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .br-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .br-topbar {
    display: none;
  }
  .br-nav-menu {
    display: none;
  }
  .br-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .br-hero-ctas {
    justify-content: center;
  }
  .br-hero-desc {
    margin: 0 auto 20px auto;
  }
  .br-hero-shipping {
    justify-content: center;
  }
  .br-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .br-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .br-blog-grid {
    grid-template-columns: 1fr;
  }
  .br-footer-grid {
    grid-template-columns: 1fr;
  }
  .br-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .br-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Logo Display */
.br-logo-holder {
  display: flex;
  align-items: center;
}

.br-logo-holder .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.br-logo-holder .custom-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Single Product Custom Layout Styles (Desktop & Mobile Optimized)
   ========================================================================== */
.lk-single-product-wrap {
  padding: 24px 0 60px 0;
  background-color: #FFFFFF;
}

/* Topbar & Breadcrumbs */
.lk-sp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}

.lk-sp-breadcrumbs {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

.lk-sp-breadcrumbs a {
  color: #64748B;
  text-decoration: none;
  font-weight: 500;
}

.lk-sp-breadcrumbs a:hover {
  color: #0066CC;
}

.lk-bc-sep {
  color: #CBD5E1;
  margin: 0 4px;
}

.lk-sp-top-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lk-badge-sku {
  font-family: monospace;
  font-size: 12px;
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
  color: #0A2540;
  font-weight: 700;
}

.lk-badge-instock {
  font-size: 12px;
  background: #ECFDF5;
  color: #065F46;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #A7F3D0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lk-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.lk-badge-outofstock {
  font-size: 12px;
  background: #FEF2F2;
  color: #991B1B;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #FECACA;
}

/* Main 2-Column Grid */
.lk-sp-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}

/* Media Showcase */
.lk-sp-main-image-box {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
}

.lk-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.lk-badge-auth {
  background: #0A2540;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.lk-badge-sale {
  background: #FF365D;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.lk-sp-main-img-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-sp-main-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.lk-sp-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.lk-thumb-item {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border: 2px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.lk-thumb-item:hover,
.lk-thumb-item.active {
  border-color: #0066CC !important;
  transform: translateY(-2px);
}

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

/* Standards Bar */
.lk-sp-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  text-align: center;
}

.lk-standard-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 12px 6px;
}

.lk-std-icon {
  font-size: 18px;
  margin-bottom: 2px;
}

.lk-standard-box strong {
  display: block;
  font-size: 12px;
  color: #0A2540;
  margin-bottom: 1px;
}

.lk-standard-box span {
  font-size: 11px;
  color: #64748B;
}

/* Details Column */
.lk-sp-cat-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0066CC;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.lk-sp-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A2540;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lk-sp-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 13px;
  color: #64748B;
}

.lk-sp-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lk-sp-rating .stars {
  color: #F59E0B;
  font-weight: 700;
}

.lk-sp-rating .grade {
  color: #475569;
  font-weight: 600;
}

.lk-sp-code strong {
  color: #0A2540;
  font-family: monospace;
}

/* Price Card */
.lk-sp-price-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.lk-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.lk-price-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #64748B;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.lk-price-display {
  font-size: 28px;
  font-weight: 800;
  color: #0066CC;
}

.lk-tax-badge {
  display: inline-block;
  background: #E0F2FE;
  color: #0369A1;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.lk-contractor-notice {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #CBD5E1;
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.lk-contractor-notice .link {
  color: #0066CC;
  font-weight: 700;
  text-decoration: underline;
}

.lk-sp-short-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   Redesigned Add-To-Cart & Stepper Form
   ========================================================================== */
.lk-sp-cart-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E8F0;
}

.lk-cart-form-container form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

/* Integrated Stepper Widget */
.lk-cart-form-container form.cart .quantity {
  display: inline-flex !important;
  align-items: center;
  border: 2px solid #CBD5E1;
  border-radius: 8px;
  background: #FFFFFF;
  overflow: hidden;
  height: 48px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lk-cart-form-container .lk-qty-btn {
  width: 42px;
  height: 100%;
  background: #F1F5F9;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #0A2540;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
  user-select: none;
}

.lk-cart-form-container .lk-qty-btn:hover {
  background: #E2E8F0;
  color: #0066CC;
}

.lk-cart-form-container form.cart .quantity input.qty {
  width: 50px !important;
  height: 100% !important;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #0A2540;
  border: none !important;
  background: transparent !important;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}

.lk-cart-form-container form.cart .quantity input.qty::-webkit-outer-spin-button,
.lk-cart-form-container form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* High-Impact Add To Cart Button */
.lk-cart-form-container form.cart button.single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 180px;
  height: 48px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #0066CC !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.28);
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lk-cart-form-container form.cart button.single_add_to_cart_button:hover {
  background: #0052A3 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.38);
}

.lk-cart-form-container form.cart button.single_add_to_cart_button:active {
  transform: translateY(0);
}

/* Variable Products Variations Table */
.lk-cart-form-container table.variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.lk-cart-form-container table.variations td.label {
  padding: 8px 12px 8px 0;
  font-weight: 700;
  font-size: 13px;
  color: #0A2540;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  width: 90px;
}

.lk-cart-form-container table.variations td.value {
  padding: 8px 0;
  vertical-align: middle;
}

.lk-cart-form-container table.variations select {
  width: 100%;
  max-width: 320px;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  background-color: #FFFFFF;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.lk-cart-form-container table.variations select:focus {
  border-color: #0066CC;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.lk-cart-form-container .woocommerce-variation-price {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
  color: #0066CC;
}

.lk-cart-form-container .woocommerce-variation-availability {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
}

/* Action Matrix (WhatsApp & Hotline) */
.lk-sp-actions-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.lk-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 13px;
  height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.lk-btn-whatsapp:hover {
  background: #1EBE5B;
  transform: translateY(-1px);
}

.lk-btn-hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0A2540;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 13px;
  height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(10, 37, 64, 0.15);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.lk-btn-hotline:hover {
  background: #1E3A5F;
  transform: translateY(-1px);
}

/* Assurance Box */
.lk-sp-assurance-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px 18px;
}

.lk-sp-assurance-box .title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0A2540;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.lk-sp-assurance-box .list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #334155;
}

.lk-sp-assurance-box .list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-sp-assurance-box .list .icon {
  color: #0066CC;
}

/* ==========================================================================
   Tabs Section
   ========================================================================== */
.lk-sp-tabs-container {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
  margin-bottom: 50px;
}

.lk-sp-tab-headers {
  display: flex;
  border-bottom: 2px solid #E2E8F0;
  background: #F8FAFC;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.lk-tab-btn {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lk-tab-btn:hover {
  color: #0A2540;
}

.lk-tab-btn.active {
  border-bottom-color: #0066CC !important;
  color: #0A2540 !important;
  background: #FFFFFF;
}

.lk-tab-panel {
  padding: 28px;
}

.lk-tab-heading {
  font-size: 17px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 16px;
}

.lk-tab-subheading {
  font-size: 15px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 12px;
}

.lk-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lk-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  min-width: 480px;
}

.lk-specs-table tr {
  border-bottom: 1px solid #E2E8F0;
}

.lk-specs-table tr:nth-child(even) {
  background: #F8FAFC;
}

.lk-specs-table td.label {
  padding: 12px 18px;
  width: 32%;
  font-weight: 700;
  color: #0A2540;
}

.lk-specs-table td.val {
  padding: 12px 18px;
  color: #334155;
}

.lk-specs-table td.sku-val {
  font-family: monospace;
  color: #0066CC;
  font-weight: 700;
}

.lk-specs-table td.stock-val {
  color: #059669;
  font-weight: 600;
}

.lk-desc-content {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}

.lk-logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 14px;
}

.lk-logistics-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 18px;
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
}

.lk-logistics-card strong {
  font-size: 14px;
  color: #0A2540;
  display: block;
  margin-bottom: 6px;
}

.lk-logistics-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.showroom-details {
  margin-top: 8px;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   Related Products Grid
   ========================================================================== */
.lk-related-products-section {
  margin-top: 40px;
}

.lk-related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 2px solid #0A2540;
  padding-bottom: 12px;
}

.lk-related-header .kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0066CC;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 2px;
}

.lk-related-header .title {
  font-size: 20px;
  font-weight: 800;
  color: #0A2540;
  margin: 0;
}

.lk-related-header .view-all {
  font-size: 13px;
  font-weight: 700;
  color: #0066CC;
}

.lk-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lk-rel-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-rel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}

.lk-rel-thumb {
  height: 180px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.lk-rel-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.lk-rel-content {
  padding: 14px;
  border-top: 1px solid #F1F5F9;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lk-rel-sku {
  font-size: 11px;
  font-family: monospace;
  color: #64748B;
  display: block;
  margin-bottom: 4px;
}

.lk-rel-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.4;
  margin-bottom: 8px;
}

.lk-rel-title a {
  color: inherit;
  text-decoration: none;
}

.lk-rel-title a:hover {
  color: #0066CC;
}

.lk-rel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}

.lk-rel-price {
  font-size: 15px;
  font-weight: 800;
  color: #0066CC;
}

.lk-rel-btn {
  background: #0A2540;
  color: #FFFFFF !important;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
}

/* ==========================================================================
   Mobile & Tablet Responsive Breakpoints for Single Product
   ========================================================================== */
@media (max-width: 992px) {
  .lk-sp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lk-sp-main-img-wrap {
    height: 340px;
  }
  .lk-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lk-logistics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lk-single-product-wrap {
    padding: 16px 0 40px 0;
  }
  .lk-sp-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }
  .lk-sp-top-badges {
    width: 100%;
    justify-content: space-between;
  }
  .lk-sp-main-image-box {
    padding: 14px;
  }
  .lk-sp-main-img-wrap {
    height: 260px;
  }
  .lk-thumb-item {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }
  .lk-sp-title {
    font-size: 22px;
  }
  .lk-price-display {
    font-size: 24px;
  }
  .lk-sp-price-card {
    padding: 14px 16px;
  }

  /* Full-width responsive Add to Cart form */
  .lk-cart-form-container form.cart {
    flex-direction: row;
    gap: 10px;
  }
  .lk-cart-form-container form.cart .quantity {
    height: 46px;
  }
  .lk-cart-form-container form.cart button.single_add_to_cart_button {
    height: 46px;
    font-size: 13px;
    padding: 0 16px;
    flex: 1 1 auto;
  }
  .lk-sp-actions-matrix {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lk-btn-whatsapp,
  .lk-btn-hotline {
    height: 44px;
    width: 100%;
  }
  .lk-sp-standards-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .lk-standard-box {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 10px 14px;
  }
  .lk-std-icon {
    font-size: 20px;
    margin-bottom: 0;
  }
  .lk-tab-panel {
    padding: 18px 14px;
  }
  .lk-tab-btn {
    padding: 14px 16px;
    font-size: 12px;
  }
  .lk-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .lk-rel-thumb {
    height: 130px;
    padding: 10px;
  }
  .lk-rel-title {
    font-size: 12px;
  }
  .lk-rel-price {
    font-size: 13px;
  }
}

/* ==========================================================================
   Modern Category Tree Sidebar & Mobile Responsiveness
   ========================================================================== */

.br-shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.br-shop-sidebar {
  position: sticky;
  top: 90px;
  z-index: 20;
}

.br-cat-tree-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px 20px 20px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.br-cat-tree-card:hover {
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.08);
}

/* Sidebar Header */
.br-cat-tree-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.br-cat-header-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.br-cat-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--c-blue, #1181fb);
}

.br-cat-tree-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0f172a;
  margin: 0;
}

.br-cat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.br-cat-expand-all-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.br-cat-expand-all-btn:hover {
  background: #f1f5f9;
  color: var(--c-blue, #1181fb);
}

.br-sidebar-drawer-close {
  display: none;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.br-sidebar-drawer-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* "All Products" Link */
.br-cat-all-link-wrapper {
  margin-bottom: 12px;
  flex-shrink: 0;
  padding-right: 4px;
}

.br-cat-all-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.br-cat-all-link .all-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  margin-right: 8px;
}

.br-cat-all-link:hover {
  background: #eff6ff;
  color: var(--c-blue, #1181fb);
  border-color: #bfdbfe;
}

.br-cat-all-link.is-active {
  background: var(--c-blue, #1181fb);
  color: #ffffff;
}

.br-cat-all-link.is-active .all-icon {
  color: #ffffff;
}

.br-cat-all-link.is-active .pill-total {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Category Tree List */
.br-cat-tree-list {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 250px);
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

/* Custom Sleek Scrollbar for WebKit browsers */
.br-cat-tree-list::-webkit-scrollbar {
  width: 6px;
}

.br-cat-tree-list::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 8px;
}

.br-cat-tree-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
  border: 1px solid #f8fafc;
}

.br-cat-tree-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.br-cat-tree-item {
  position: relative;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.br-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.br-cat-row:hover {
  background: #f8fafc;
}

.br-cat-tree-item.is-active > .br-cat-row {
  background: #f1f5f9;
}

.br-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-decoration: none;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.br-cat-link:hover {
  color: var(--c-blue, #1181fb);
}

.br-cat-link.is-active-link {
  color: var(--c-blue, #1181fb);
}

.br-cat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f8fafc;
  color: #475569;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.br-cat-row:hover .br-cat-icon-wrap,
.br-cat-tree-item.is-expanded .br-cat-icon-wrap {
  background: #eff6ff;
  color: var(--c-blue, #1181fb);
}

.br-cat-name {
  flex: 1;
}

.br-cat-row-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Count Pills */
.br-cat-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: all 0.2s ease;
}

.br-cat-row:hover .br-cat-count-pill {
  background: #e2e8f0;
  color: #1e293b;
}

/* Accordion Toggle Chevron */
.br-cat-accordion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.br-cat-accordion-toggle:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.chevron-icon {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.br-cat-tree-item.is-expanded > .br-cat-row .chevron-icon {
  transform: rotate(180deg);
  color: var(--c-blue, #1181fb);
}

/* Sub-Tree Hierarchy */
.br-cat-sub-tree {
  list-style: none;
  margin: 2px 0 6px 20px;
  padding: 4px 0 4px 12px;
  border-left: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.br-cat-sub-item {
  position: relative;
}

.br-cat-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.2s ease;
}

.br-sub-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.br-sub-name {
  flex: 1;
}

.br-sub-count {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.br-cat-sub-link:hover {
  background: #eff6ff;
  color: var(--c-blue, #1181fb);
}

.br-cat-sub-link:hover .br-sub-dot {
  background: var(--c-blue, #1181fb);
  transform: scale(1.3);
}

.br-cat-sub-item.is-active .br-cat-sub-link {
  background: #eff6ff;
  color: var(--c-blue, #1181fb);
  font-weight: 700;
}

.br-cat-sub-item.is-active .br-sub-dot {
  background: var(--c-blue, #1181fb);
}

.br-cat-sub-item.is-active .br-sub-count {
  color: var(--c-blue, #1181fb);
}

/* ==========================================================================
   Mobile Responsiveness & Category Drawer (< 992px)
   ========================================================================== */

.br-mobile-filter-bar {
  display: none;
  margin-bottom: 20px;
}

.br-mobile-filter-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.br-mobile-filter-trigger .filter-icon {
  display: inline-flex;
  color: var(--c-blue, #1181fb);
  margin-right: 10px;
}

.br-mobile-filter-trigger .filter-label {
  flex: 1;
  text-align: left;
}

.br-mobile-filter-trigger .filter-badge {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.br-sidebar-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .br-shop-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .br-mobile-filter-bar {
    display: block;
    position: sticky;
    top: 75px;
    z-index: 30;
  }

  /* Off-Canvas Drawer */
  .br-shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
  }

  .br-shop-sidebar.is-open {
    left: 0;
  }

  .br-cat-tree-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 18px 40px;
    min-height: 100%;
    max-height: none;
    display: block;
  }

  .br-cat-tree-list {
    max-height: none;
    overflow-y: visible;
  }

  .br-cat-tree-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 5;
    padding-top: 4px;
  }

  .br-sidebar-drawer-close {
    display: inline-flex;
  }

  .br-cat-row {
    padding: 10px 12px;
  }

  .br-cat-sub-link {
    padding: 8px 10px;
  }
}

/* ==========================================================================
   Brands Carousel Showcase
   ========================================================================== */
.br-brands-section {
  margin-top: 60px;
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.br-brands-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.br-brands-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-blue);
  margin-bottom: 6px;
}

.br-brands-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.br-brands-subtitle {
  font-size: 15px;
  color: #64748b;
  max-width: 650px;
  line-height: 1.5;
  margin: 0;
}

.br-brands-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.br-brand-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.br-brand-nav-btn:hover {
  background: var(--c-blue);
  color: #ffffff;
  border-color: var(--c-blue);
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(17, 129, 251, 0.3);
}

.br-brand-nav-btn:active {
  transform: scale(0.96);
}

.br-brands-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 10px 4px 20px 4px;
}

.br-brands-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
  user-select: none;
}

.br-brands-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.br-brand-slide {
  flex: 0 0 calc((100% - (18px * 5)) / 6);
  min-width: 160px;
}

.br-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 175px;
  padding: 20px 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.br-brand-card:hover {
  transform: translateY(-5px);
  border-color: #93c5fd;
  box-shadow: 0 12px 26px rgba(17, 129, 251, 0.12);
}

.br-brand-logo-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px 0;
}

.br-brand-logo {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(12%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.br-brand-card:hover .br-brand-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.br-brand-info {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.br-brand-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-brand-count-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 2px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.br-brand-card:hover .br-brand-count-badge {
  background: var(--c-blue);
  color: #ffffff;
  border-color: var(--c-blue);
}

@media (max-width: 1200px) {
  .br-brand-slide {
    flex: 0 0 calc((100% - (18px * 4)) / 5);
  }
}

@media (max-width: 992px) {
  .br-brand-slide {
    flex: 0 0 calc((100% - (18px * 3)) / 4);
  }
  .br-brands-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .br-brand-slide {
    flex: 0 0 calc((100% - (14px * 2)) / 3);
    min-width: 140px;
  }
  .br-brands-track {
    gap: 14px;
  }
  .br-brand-card {
    height: 160px;
    padding: 16px 10px 14px;
  }
  .br-brand-logo {
    max-height: 44px;
    max-width: 110px;
  }
  .br-brands-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .br-brands-nav {
    align-self: flex-end;
    margin-top: -30px;
  }
}

@media (max-width: 520px) {
  .br-brand-slide {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: 130px;
  }
  .br-brands-track {
    gap: 12px;
  }
}

/* ==========================================================================
   Centered Brand Hero Section (Dark Tinted Design)
   ========================================================================== */
.br-brand-hero-section {
  background: linear-gradient(180deg, #090e1a 0%, #0f172a 100%);
  border-bottom: 1px solid #1e293b;
  padding: 56px 0 48px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.br-brand-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.br-brand-hero-logo-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.br-brand-hero-logo-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.br-brand-hero-logo {
  max-height: 52px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.br-brand-hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.br-brand-hero-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.br-brand-hero-badge.br-badge-official {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.br-brand-hero-badge.br-badge-count {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.br-brand-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.br-brand-hero-desc {
  font-size: 15.5px;
  line-height: 26px;
  color: #94a3b8;
  margin: 0 0 18px 0;
  max-width: 660px;
  text-align: center;
}

.br-brand-hero-desc p {
  color: #94a3b8;
  margin: 0;
}

.br-brand-hero-breadcrumbs {
  font-size: 13px;
  color: #64748b;
  display: flex;
  justify-content: center;
}

.br-brand-hero-breadcrumbs a {
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
}

.br-brand-hero-breadcrumbs a:hover {
  color: #38bdf8;
}

.br-bc-sep {
  color: #475569;
  margin: 0 6px;
}

/* ==========================================================================
   Catalog Top Bar & Styled Sorting Dropdown
   ========================================================================== */
.br-shop-content {
  width: 100%;
}

.br-shop-content > .page-title,
.br-shop-content > .term-description,
.br-shop-content > .woocommerce-products-header {
  display: none !important;
}

.br-shop-content .woocommerce-ordering {
  float: right;
  margin-bottom: 24px;
}

.br-shop-content .woocommerce-result-count {
  float: left;
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.woocommerce-ordering {
  position: relative;
  display: inline-block;
}

.woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 42px 10px 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  min-height: 42px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.woocommerce-ordering select.orderby:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.woocommerce-ordering select.orderby:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(17, 129, 251, 0.15);
}

@media (max-width: 768px) {
  .br-brand-hero-title {
    font-size: 28px;
  }
  .br-brand-hero-desc {
    font-size: 14px;
    line-height: 22px;
  }
  .br-brand-hero-section {
    padding: 36px 0 32px;
    margin-bottom: 30px;
  }
  .br-shop-content .woocommerce-result-count,
  .br-shop-content .woocommerce-ordering {
    float: none;
    width: 100%;
    margin-bottom: 14px;
  }
  .woocommerce-ordering select.orderby {
    width: 100%;
  }
}

/* ==========================================================================
   Dribbble Style Product Card (Full-Height Image & Floating Detail Overlay)
   ========================================================================== */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  justify-content: center !important;
  justify-items: center !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 auto 50px auto !important;
  padding: 0 !important;
  clear: both !important;
  width: 100% !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product.br-dribbble-product-card,
li.product.br-dribbble-product-card {
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 310px !important;
  justify-self: center !important;
  float: none !important;
  position: relative !important;
  background: transparent !important;
}

/* Outer Card: Compact Proportional Height & Rounded Corners */
.br-card-outer {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1.5px solid #e8ecf2 !important;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease !important;
  margin: 0 auto !important;
}

.br-card-outer:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px -6px rgba(15, 23, 42, 0.16) !important;
  border-color: #cbd5e1 !important;
}

/* 1. Full-Height Product Image (Fills the entire 100% card background) */
.br-card-bg-link,
.woocommerce ul.products li.product .br-card-bg-link {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.br-card-img-wrap {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f8fafc !important;
}

.br-card-full-img,
.woocommerce ul.products li.product a img.br-card-full-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.br-card-outer:hover .br-card-full-img {
  transform: scale(1.08) !important;
}

/* 2. Top Badges & Wishlist Icon */
.br-card-top-bar {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: 14px !important;
  z-index: 4 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  pointer-events: none !important;
}

.br-card-top-left {
  display: flex !important;
  gap: 5px !important;
  flex-wrap: wrap !important;
  max-width: calc(100% - 44px) !important;
}

.br-top-pill {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.br-top-pill.pill-sale {
  background: #ff365d !important;
  color: #ffffff !important;
}

.br-top-pill.pill-brand {
  background: rgba(255, 255, 255, 0.94) !important;
  color: #0f172a !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  backdrop-filter: blur(8px) !important;
}

.br-card-heart-btn {
  pointer-events: auto !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #475569 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.22s ease !important;
  text-decoration: none !important;
}

.br-card-heart-btn:hover {
  background: #ffffff !important;
  color: #ef4444 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.25) !important;
}

/* 3. Floating Detail Overlay (Positioned directly in the bottom area OVER the image) */
.br-card-glass-bottom {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 3 !important;
  padding: 30px 16px 16px !important;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.7) 35%, rgba(15, 23, 42, 0.94) 100%) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: 0 0 20px 20px !important;
  border-top: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.br-glass-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  margin: 0 0 3px 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.br-glass-title a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.br-glass-title a:hover {
  color: #38bdf8 !important;
}

.br-glass-desc {
  font-size: 12px !important;
  line-height: 1.35 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 0 10px 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.br-glass-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 8px !important;
}

.br-glass-price-wrap {
  flex: 1 !important;
  overflow: hidden !important;
}

.br-glass-price {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-family: var(--font-primary) !important;
  line-height: 1.15 !important;
}

.br-glass-price .screen-reader-text {
  display: none !important;
}

.br-glass-price del {
  display: block !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 11.5px !important;
  margin: 0 0 1px 0 !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

.br-glass-price ins {
  display: block !important;
  text-decoration: none !important;
  color: #38bdf8 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

.br-glass-buy-btn,
.woocommerce ul.products li.product .br-glass-buy-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  padding: 7px 18px !important;
  border-radius: 24px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22) !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  cursor: pointer !important;
  border: none !important;
  flex-shrink: 0 !important;
  line-height: 1.2 !important;
}

.br-glass-buy-btn:hover,
.woocommerce ul.products li.product .br-glass-buy-btn:hover {
  background: #38bdf8 !important;
  color: #ffffff !important;
  transform: scale(1.06) !important;
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.45) !important;
}

.br-glass-buy-btn:active {
  transform: scale(0.96) !important;
}

@media (max-width: 1200px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  li.product.br-dribbble-product-card {
    max-width: 100% !important;
  }
  .br-card-outer {
    height: 320px !important;
    border-radius: 16px !important;
  }
  .br-card-glass-bottom {
    padding: 20px 10px 10px !important;
    border-radius: 0 0 16px 16px !important;
  }
  .br-glass-title {
    font-size: 13px !important;
  }
  .br-glass-desc {
    display: none !important;
  }
  .br-glass-price {
    font-size: 13.5px !important;
  }
  .br-glass-buy-btn,
  .woocommerce ul.products li.product .br-glass-buy-btn {
    padding: 5px 12px !important;
    font-size: 11.5px !important;
  }
}

/* ==========================================================================
   Catalog & WooCommerce Horizontal Pagination
   ========================================================================== */
.woocommerce-pagination,
.br-pagination-wrap {
  margin: 48px 0 20px 0 !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  clear: both !important;
}

.woocommerce-pagination ul.page-numbers,
ul.page-numbers {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important;
}

.woocommerce-pagination ul.page-numbers li,
ul.page-numbers li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  float: none !important;
}

.woocommerce-pagination ul.page-numbers li .page-numbers,
ul.page-numbers li .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers:hover,
ul.page-numbers li a.page-numbers:hover {
  border-color: #0056b3 !important;
  color: #0056b3 !important;
  background: #f0f7ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.15) !important;
}

.woocommerce-pagination ul.page-numbers li .page-numbers.current,
ul.page-numbers li .page-numbers.current {
  background: #0056b3 !important;
  color: #ffffff !important;
  border-color: #0056b3 !important;
  box-shadow: 0 4px 14px rgba(0, 86, 179, 0.35) !important;
  cursor: default !important;
}

.woocommerce-pagination ul.page-numbers li .page-numbers.dots,
ul.page-numbers li .page-numbers.dots {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #94a3b8 !important;
  font-size: 16px !important;
  min-width: 28px !important;
  padding: 0 !important;
  cursor: default !important;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers svg,
ul.page-numbers li a.page-numbers svg {
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ==========================================================================
   Flash Deals: Warm Orange / Red / Yellow Color Theme
   ========================================================================== */

/* 1. Hero Section */
.br-flash-hero-section {
  position: relative !important;
  background: radial-gradient(ellipse at 50% -20%, rgba(249, 115, 22, 0.22) 0%, rgba(239, 68, 68, 0.08) 50%, transparent 80%), linear-gradient(180deg, #130904 0%, #1c0e07 50%, #0d0704 100%) !important;
  border-bottom: 1px solid rgba(249, 115, 22, 0.25) !important;
}

.br-flash-hero-container {
  position: relative !important;
}

.br-flash-hero-top-meta {
  position: absolute !important;
  top: 0 !important;
  right: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.br-flash-hero-top-meta .br-meta-text {
  color: #94a3b8 !important;
  font-size: 13px !important;
}

.br-flash-hero-top-meta .br-meta-sep {
  color: rgba(148, 163, 184, 0.4) !important;
  font-size: 11px !important;
}

@media (max-width: 768px) {
  .br-flash-hero-top-meta {
    position: static !important;
    justify-content: center !important;
    margin-bottom: 14px !important;
    font-size: 12px !important;
  }
}

/* 2. Dedicated Flash Deals Category Tree (Modern Refined UI) */
.br-flash-cat-tree {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1.5px solid #fed7aa !important;
  box-shadow: 0 10px 30px -4px rgba(249, 115, 22, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  padding: 20px 16px !important;
  position: relative !important;
}

.br-flash-cat-tree .br-cat-tree-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 14px !important;
  margin-bottom: 14px !important;
  border-bottom: 1px solid #ffedd5 !important;
}

.br-flash-cat-tree .br-cat-header-title-group {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.br-cat-header-icon.br-flash-fire-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
  border: 1px solid #fed7aa !important;
  color: #ea580c !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.12) !important;
}

.br-flash-cat-tree .br-cat-tree-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  margin: 0 !important;
  letter-spacing: -0.2px !important;
}

.br-flash-cat-tree .br-cat-expand-all-btn {
  background: #fff7ed !important;
  color: #ea580c !important;
  border: 1px solid #fed7aa !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.br-flash-cat-tree .br-cat-expand-all-btn:hover {
  background: #ffedd5 !important;
  color: #c2410c !important;
  border-color: #f97316 !important;
}

.br-flash-cat-tree .br-cat-tree-list {
  scrollbar-color: #fdba74 #fff7ed !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  padding-right: 4px !important;
}

.br-flash-cat-tree .br-cat-tree-list::-webkit-scrollbar-track {
  background: #fff7ed !important;
}

.br-flash-cat-tree .br-cat-tree-list::-webkit-scrollbar-thumb {
  background: #fdba74 !important;
  border: 1px solid #fff7ed !important;
}

.br-flash-cat-tree .br-cat-tree-list::-webkit-scrollbar-thumb:hover {
  background: #f97316 !important;
}

/* Department Items */
.br-flash-cat-tree .br-dept-item {
  border-radius: 14px !important;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  border: 1px solid transparent !important;
}

.br-flash-cat-tree .br-dept-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
  gap: 8px !important;
}

.br-flash-cat-tree .br-dept-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  text-decoration: none !important;
  color: #334155 !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
  line-height: 1.3 !important;
}

.br-flash-cat-tree .br-dept-icon-box {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.br-flash-cat-tree .br-dept-row-right {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.br-flash-cat-tree .br-cat-count-badge {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  padding: 3px 9px !important;
  border-radius: 12px !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
  min-width: 26px !important;
  text-align: center !important;
}

.br-flash-cat-tree .br-cat-toggle-btn {
  width: 26px !important;
  height: 26px !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.br-flash-cat-tree .br-cat-toggle-btn:hover {
  background: #ffedd5 !important;
  color: #ea580c !important;
  border-color: #fed7aa !important;
}

/* Department Hover State */
.br-flash-cat-tree .br-dept-item:not(.is-active) > .br-dept-row:hover {
  background: #fffaf5 !important;
}

.br-flash-cat-tree .br-dept-item:not(.is-active) > .br-dept-row:hover .br-dept-link {
  color: #ea580c !important;
}

.br-flash-cat-tree .br-dept-item:not(.is-active) > .br-dept-row:hover .br-dept-icon-box {
  background: #fff7ed !important;
  border-color: #fed7aa !important;
  color: #ea580c !important;
}

.br-flash-cat-tree .br-dept-item:not(.is-active) > .br-dept-row:hover .br-cat-count-badge {
  background: #ffedd5 !important;
  border-color: #fed7aa !important;
  color: #c2410c !important;
}

/* Active Department State */
.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3) !important;
}

.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row .br-dept-link,
.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row .br-dept-name {
  color: #ffffff !important;
}

.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row .br-dept-icon-box {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row .br-cat-count-badge {
  background: #ffffff !important;
  border-color: transparent !important;
  color: #9a3412 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.br-flash-cat-tree .br-dept-item.is-active > .br-dept-row .br-cat-toggle-btn {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

/* Level 2 Subcategory Tree (Refined hierarchy line) */
.br-flash-cat-tree .br-sub-tree-container {
  margin: 4px 0 6px 20px !important;
  padding-left: 14px !important;
  border-left: 2px dashed #fed7aa !important;
}

.br-flash-cat-tree .br-sub-tree-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.br-flash-cat-tree .br-sub-item {
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.br-flash-cat-tree .br-sub-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  gap: 6px !important;
}

.br-flash-cat-tree .br-sub-link {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 1 !important;
  text-decoration: none !important;
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.br-flash-cat-tree .br-tree-bullet {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: #cbd5e1 !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.br-flash-cat-tree .br-sub-count-badge {
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 7px !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
  color: #64748b !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
}

.br-flash-cat-tree .br-sub-item:not(.is-active) .br-sub-row:hover {
  background: #fff7ed !important;
}

.br-flash-cat-tree .br-sub-item:not(.is-active) .br-sub-row:hover .br-sub-name {
  color: #ea580c !important;
}

.br-flash-cat-tree .br-sub-item:not(.is-active) .br-sub-row:hover .br-tree-bullet {
  background: #ea580c !important;
}

.br-flash-cat-tree .br-sub-item:not(.is-active) .br-sub-row:hover .br-sub-count-badge {
  background: #ffedd5 !important;
  border-color: #fed7aa !important;
  color: #c2410c !important;
}

/* Active Subcategory */
.br-flash-cat-tree .br-sub-item.is-active > .br-sub-row {
  background: #fff7ed !important;
  border: 1px solid #fed7aa !important;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.08) !important;
}

.br-flash-cat-tree .br-sub-item.is-active .br-sub-name {
  color: #c2410c !important;
  font-weight: 800 !important;
}

.br-flash-cat-tree .br-sub-item.is-active .br-tree-bullet {
  background: #f97316 !important;
  transform: scale(1.3) !important;
}

.br-flash-cat-tree .br-sub-item.is-active .br-sub-count-badge {
  background: #f97316 !important;
  border-color: transparent !important;
  color: #ffffff !important;
}

/* 3. Filter Tag in Catalog Header */
.br-flash-clear-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #fff7ed !important;
  border: 1px solid #fed7aa !important;
  color: #c2410c !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  margin-left: 10px !important;
  transition: all 0.2s ease !important;
}

.br-flash-clear-tag:hover {
  background: #ffedd5 !important;
  border-color: #fb923c !important;
  color: #9a3412 !important;
  transform: translateY(-1px) !important;
}

/* 4. Product Cards in Flash Deals */
.br-flash-main .br-card-outer,
.woocommerce ul.products li.product.sale .br-card-outer {
  border-color: #fed7aa !important;
  box-shadow: 0 10px 28px -4px rgba(249, 115, 22, 0.18), 0 4px 12px rgba(234, 88, 12, 0.08) !important;
}

.br-flash-main .br-card-outer:hover,
.woocommerce ul.products li.product.sale .br-card-outer:hover {
  transform: translateY(-8px) !important;
  border-color: #f97316 !important;
  box-shadow: 0 22px 45px -6px rgba(249, 115, 22, 0.38), 0 8px 18px rgba(239, 68, 68, 0.22) !important;
}

.br-flash-main .br-top-pill.pill-sale {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35) !important;
}

.br-flash-main .br-glass-price ins {
  color: #fbbf24 !important;
}

.br-flash-main .br-glass-buy-btn,
.woocommerce ul.products li.product .br-flash-main .br-glass-buy-btn {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35) !important;
}

.br-flash-main .br-glass-buy-btn:hover,
.woocommerce ul.products li.product .br-flash-main .br-glass-buy-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  transform: scale(1.06) !important;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5) !important;
}

/* 5. Pagination & Sorting in Flash Deals */
.br-flash-sort-wrap:focus-within {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
}

.br-flash-pagination ul.page-numbers li a.page-numbers:hover {
  border-color: #f97316 !important;
  color: #ea580c !important;
  background: #fff7ed !important;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.18) !important;
}

.br-flash-pagination ul.page-numbers li .page-numbers.current {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%) !important;
  border-color: #f97316 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4) !important;
}

.br-flash-mobile-trigger {
  border-color: #fed7aa !important;
}

.br-flash-mobile-trigger .filter-icon {
  color: #ea580c !important;
}

.br-flash-mobile-trigger .filter-badge {
  background: #ffedd5 !important;
  color: #9a3412 !important;
}

/* 6. Homepage Flash Deals Grid (4 Equal Centered Columns) */
ul.products.br-home-flash-grid,
.woocommerce ul.products.br-home-flash-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto 40px auto !important;
  justify-content: center !important;
  justify-items: center !important;
}

ul.products.br-home-flash-grid li.product.br-dribbble-product-card,
.woocommerce ul.products.br-home-flash-grid li.product.br-dribbble-product-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* 7. Catalog Grid with Sidebar (3 Equal Centered Columns) */
.br-shop-content ul.products,
.br-shop-content .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 auto 50px auto !important;
  justify-content: center !important;
}

.br-shop-content ul.products li.product.br-dribbble-product-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 1200px) {
  ul.products.br-home-flash-grid,
  .woocommerce ul.products.br-home-flash-grid,
  .br-shop-content ul.products,
  .br-shop-content .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  ul.products.br-home-flash-grid,
  .woocommerce ul.products.br-home-flash-grid,
  .br-shop-content ul.products,
  .br-shop-content .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* ==========================================================================
   Guides & Industry Updates Page Styles
   ========================================================================== */
.br-guides-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.br-guide-pill {
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  cursor: pointer;
  transition: all 0.22s ease;
}

.br-guide-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.br-guide-pill.active {
  background: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
  box-shadow: 0 4px 14px rgba(0, 86, 179, 0.28);
}

.br-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.br-guide-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid #e8ecf2;
  overflow: hidden;
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.br-guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.br-guide-thumb-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f1f5f9;
}

.br-guide-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.br-guide-card:hover .br-guide-thumb {
  transform: scale(1.06);
}

.br-guide-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.br-guide-tag.tag-safety {
  background: #0284c7;
}

.br-guide-tag.tag-energy {
  background: #059669;
}

.br-guide-tag.tag-wiring {
  background: #d97706;
}

.br-guide-tag.tag-trade {
  background: #4f46e5;
}

.br-guide-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.br-guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 10px;
}

.br-guide-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.br-guide-card-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.br-guide-card-title a:hover {
  color: #0056b3;
}

.br-guide-excerpt {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}

.br-guide-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.br-guide-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0056b3;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.br-guide-action-btn:hover {
  gap: 10px;
  color: #003d80;
}

@media (max-width: 1100px) {
  .br-guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .br-guides-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==========================================================================
   WooCommerce Cart Page - High Specificity Clean Layout
   ========================================================================== */

.woocommerce-cart.woocommerce-page .woocommerce,
.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  float: none !important;
  width: 100% !important;
}

/* 2-Column Responsive Layout */
.woocommerce-cart.woocommerce-page .woocommerce > form.woocommerce-cart-form,
.woocommerce-cart .woocommerce > form.woocommerce-cart-form {
  float: none !important;
  width: 100% !important;
  margin-bottom: 40px;
}

.woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals,
.woocommerce-cart .woocommerce .cart-collaterals {
  float: none !important;
  width: 100% !important;
}

@media (min-width: 992px) {
  .woocommerce-cart.woocommerce-page .woocommerce,
  .woocommerce-cart .woocommerce {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 36px !important;
    align-items: start !important;
  }
  .woocommerce-cart.woocommerce-page .woocommerce > form.woocommerce-cart-form,
  .woocommerce-cart .woocommerce > form.woocommerce-cart-form {
    margin-bottom: 0 !important;
  }
  .woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals,
  .woocommerce-cart .woocommerce .cart-collaterals {
    position: sticky !important;
    top: 90px !important;
    width: 100% !important;
  }
}

/* Cart Table Card Wrapper */
.woocommerce-cart.woocommerce-page table.shop_table.cart,
.woocommerce-cart table.shop_table.cart {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03) !important;
  margin-bottom: 0 !important;
}

.woocommerce-cart.woocommerce-page table.shop_table.cart thead th,
.woocommerce-cart table.shop_table.cart thead th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  padding: 16px 20px !important;
  border: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
  text-align: left !important;
}

.woocommerce-cart.woocommerce-page table.shop_table.cart tbody td,
.woocommerce-cart table.shop_table.cart tbody td {
  padding: 20px !important;
  border: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle !important;
  color: #1e293b !important;
  font-size: 15px !important;
}

.woocommerce-cart.woocommerce-page table.shop_table.cart tbody tr:last-child td,
.woocommerce-cart table.shop_table.cart tbody tr:last-child td {
  border-bottom: none !important;
}

/* Product Remove Button */
.woocommerce-cart table.shop_table.cart td.product-remove {
  width: 36px !important;
  text-align: center !important;
  padding-right: 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  color: #94a3b8 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  background: #f8fafc !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
}

/* Product Thumbnail */
.woocommerce-cart table.shop_table.cart td.product-thumbnail {
  width: 90px !important;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
  width: 76px !important;
  height: 76px !important;
  object-fit: contain !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 4px !important;
}

/* Product Name & Variations */
.woocommerce-cart table.shop_table.cart td.product-name {
  font-weight: 700 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a {
  color: #0f172a !important;
  text-decoration: none !important;
  font-size: 15.5px !important;
  transition: color 0.15s ease !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a:hover {
  color: #0284c7 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name dl.variation {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 6px !important;
  font-size: 12.5px !important;
}

.woocommerce-cart table.shop_table.cart td.product-name dl.variation dt {
  font-weight: 700 !important;
  color: #64748b !important;
  margin: 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name dl.variation dd {
  color: #0f172a !important;
  font-weight: 600 !important;
  margin: 0 10px 0 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name dl.variation dd p {
  margin: 0 !important;
}

/* Price & Subtotal */
.woocommerce-cart table.shop_table.cart td.product-price,
.woocommerce-cart table.shop_table.cart td.product-subtotal {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  white-space: nowrap !important;
}

.woocommerce-cart table.shop_table.cart td.product-subtotal {
  font-weight: 800 !important;
  color: #0f172a !important;
}

/* Quantity input in Cart */
.woocommerce-cart table.shop_table.cart td.product-quantity .quantity {
  display: inline-flex !important;
  align-items: center !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity input.qty {
  width: 58px !important;
  height: 40px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  outline: none !important;
  background: #ffffff !important;
  transition: border-color 0.15s ease !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity input.qty:focus {
  border-color: #0284c7 !important;
}

/* Cart Actions / Coupon Bar */
.woocommerce-cart table.shop_table.cart td.actions {
  padding: 18px 20px !important;
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  float: left !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon label {
  display: none !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon input.input-text {
  height: 42px !important;
  padding: 0 14px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  min-width: 170px !important;
  outline: none !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon input.input-text:focus {
  border-color: #0284c7 !important;
}

.woocommerce-cart table.shop_table.cart td.actions button.button {
  height: 42px !important;
  padding: 0 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  border: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon button.button {
  background: #0f172a !important;
  color: #ffffff !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon button.button:hover {
  background: #334155 !important;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
  float: right !important;
  background: #f1f5f9 !important;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"]:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

/* ==========================================================================
   Cart Totals Summary Box - Strong Specificity Overrides
   ========================================================================== */
.woocommerce-cart.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-cart .cart_totals,
.woocommerce .cart_totals {
  float: none !important;
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03) !important;
  box-sizing: border-box !important;
}

.woocommerce-cart.woocommerce-page .cart-collaterals .cart_totals h2,
.woocommerce-cart .cart_totals h2,
.woocommerce .cart_totals h2 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 18px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #f1f5f9 !important;
  text-align: left !important;
}

.woocommerce-cart.woocommerce-page .cart_totals table.shop_table,
.woocommerce-cart .cart_totals table.shop_table,
.woocommerce .cart_totals table.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 20px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.woocommerce-cart.woocommerce-page .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table th {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  text-align: left !important;
  width: 35% !important;
  background: transparent !important;
}

.woocommerce-cart.woocommerce-page .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce .cart_totals table.shop_table td {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  text-align: right !important;
  background: transparent !important;
}

.woocommerce-cart.woocommerce-page .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total th {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  border-bottom: none !important;
  padding-top: 16px !important;
}

.woocommerce-cart.woocommerce-page .cart_totals table.shop_table tr.order-total td,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  border-bottom: none !important;
  padding-top: 16px !important;
}

/* Shipping Options & Calculator in Cart Totals */
.woocommerce-cart.woocommerce-page .cart_totals tr.woocommerce-shipping-totals td,
.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals td {
  text-align: right !important;
}

.woocommerce-cart ul#shipping_method {
  list-style: none !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.woocommerce-cart ul#shipping_method li {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  cursor: pointer !important;
}

.woocommerce-cart ul#shipping_method li input {
  accent-color: #0284c7 !important;
  cursor: pointer !important;
}

.woocommerce-cart p.woocommerce-shipping-destination {
  font-size: 12.5px !important;
  color: #64748b !important;
  margin: 4px 0 10px !important;
}

.woocommerce-cart a.shipping-calculator-button {
  display: inline-block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0284c7 !important;
  text-decoration: underline !important;
  margin-top: 4px !important;
}

.woocommerce-cart form.woocommerce-shipping-calculator {
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px dashed #e2e8f0 !important;
}

.woocommerce-cart form.woocommerce-shipping-calculator select,
.woocommerce-cart form.woocommerce-shipping-calculator input.input-text {
  width: 100% !important;
  height: 38px !important;
  padding: 0 10px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  margin-bottom: 8px !important;
  background: #ffffff !important;
}

.woocommerce-cart form.woocommerce-shipping-calculator button.button {
  width: 100% !important;
  height: 36px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

/* Proceed to Checkout Button */
.woocommerce-cart.woocommerce-page .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 50px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15) !important;
  transition: all 0.2s ease !important;
  margin-top: 10px !important;
  float: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #1e293b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2) !important;
}

/* Empty Cart State */
.woocommerce-cart.woocommerce-page .cart-empty.woocommerce-info,
.woocommerce-cart .cart-empty.woocommerce-info {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 40px 24px !important;
  text-align: center !important;
  color: #475569 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02) !important;
  margin-bottom: 24px !important;
}

.woocommerce-cart .return-to-shop {
  text-align: center !important;
}

.woocommerce-cart .return-to-shop a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  padding: 0 30px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .return-to-shop a.button:hover {
  background: #1e293b !important;
  transform: translateY(-1px) !important;
}

/* WooCommerce Alerts in Cart */
.woocommerce-cart .woocommerce-notices-wrapper {
  grid-column: 1 / -1 !important;
  margin-bottom: 24px !important;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info {
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  border-left: 4px solid !important;
}

.woocommerce-cart .woocommerce-message {
  background: #ecfdf5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

.woocommerce-cart .woocommerce-error {
  background: #fef2f2 !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
}

/* Mobile Responsive Cart Table */
@media (max-width: 768px) {
  .woocommerce-cart table.shop_table.cart thead {
    display: none !important;
  }
  .woocommerce-cart table.shop_table.cart tbody tr {
    display: block !important;
    position: relative !important;
    padding: 16px 14px !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  .woocommerce-cart table.shop_table.cart tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: none !important;
  }
  .woocommerce-cart table.shop_table.cart td.product-remove {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: auto !important;
    padding: 0 !important;
  }
  .woocommerce-cart table.shop_table.cart td.product-thumbnail {
    width: auto !important;
    justify-content: flex-start !important;
  }
  .woocommerce-cart table.shop_table.cart td.product-name {
    padding-right: 32px !important;
  }
  .woocommerce-cart table.shop_table.cart td.actions {
    display: block !important;
  }
  .woocommerce-cart table.shop_table.cart td.actions .coupon {
    float: none !important;
    width: 100% !important;
    margin-bottom: 12px !important;
  }
  .woocommerce-cart table.shop_table.cart td.actions .coupon input.input-text {
    flex: 1 !important;
    min-width: 0 !important;
  }
  .woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
    float: none !important;
    width: 100% !important;
  }
}












