/*
Theme Name: BloomPicks
Theme URI: https://rokinso.com
Author: Rokinso
Author URI: https://rokinso.com
Description: BloomPicks — Türkiye'ye özel premium WooCommerce teması. Lacivert ve turuncu marka kimliğiyle, kurumsal fatura, gelişmiş fiyatlandırma ve Türkçe ödeme akışı desteği sunar.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bloompicks
Tags: e-commerce, woocommerce, turkish, custom-logo, custom-menu, mobile-first, rtl-language-support
*/

/* ============================================================
   BLOOMPICKS THEME — CSS VARIABLES & DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand Colors */
  --bp-navy:          #00205A;
  --bp-navy-dark:     #001842;
  --bp-orange:        #E86A00;
  --bp-orange-bright: #F07800;

  /* Backgrounds */
  --bp-cream:         #FFF7EF;
  --bp-warm-white:    #FDFBF8;
  --bp-white:         #FFFFFF;

  /* Text */
  --bp-text-main:     #101828;
  --bp-text-muted:    #667085;
  --bp-text-light:    #98A2B3;

  /* Borders */
  --bp-border:        #D0D5DD;
  --bp-border-light:  #E4E7EC;
  --bp-border-navy:   #C5CEDF;

  /* States */
  --bp-success:       #12B76A;
  --bp-warning:       #F79009;
  --bp-error:         #D92D20;

  /* Shadows */
  --bp-shadow-sm:     0 1px 2px rgba(16, 24, 40, 0.06);
  --bp-shadow-md:     0 4px 8px rgba(16, 24, 40, 0.08);
  --bp-shadow-lg:     0 12px 24px rgba(16, 24, 40, 0.12);
  --bp-shadow-card:   0 2px 8px rgba(0, 32, 90, 0.08);

  /* Radius */
  --bp-radius-sm:     6px;
  --bp-radius-md:     10px;
  --bp-radius-lg:     16px;
  --bp-radius-xl:     24px;
  --bp-radius-full:   9999px;

  /* Spacing */
  --bp-space-xs:      4px;
  --bp-space-sm:      8px;
  --bp-space-md:      16px;
  --bp-space-lg:      24px;
  --bp-space-xl:      32px;
  --bp-space-2xl:     48px;
  --bp-space-3xl:     64px;
  --bp-space-4xl:     80px;

  /* Typography */
  --bp-font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bp-font-size-xs:  12px;
  --bp-font-size-sm:  14px;
  --bp-font-size-md:  16px;
  --bp-font-size-lg:  18px;
  --bp-font-size-xl:  20px;
  --bp-font-size-2xl: 24px;
  --bp-font-size-3xl: 30px;
  --bp-font-size-4xl: 36px;
  --bp-font-size-5xl: 48px;

  /* Transitions */
  --bp-transition:    all 0.2s ease;
  --bp-transition-md: all 0.3s ease;

  /* Container */
  --bp-container-max: 1280px;
  --bp-container-pad: 20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--bp-font-sans);
  font-size: var(--bp-font-size-md);
  color: var(--bp-text-main);
  background-color: var(--bp-warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--bp-orange);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--bp-font-sans);
}

input, textarea, select {
  font-family: var(--bp-font-sans);
  font-size: var(--bp-font-size-md);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--bp-navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--bp-radius-sm) 0;
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.bp-container {
  max-width: var(--bp-container-max);
  margin: 0 auto;
  padding: 0 var(--bp-container-pad);
}

.bp-section {
  padding: var(--bp-space-3xl) 0;
}

.bp-section-sm {
  padding: var(--bp-space-2xl) 0;
}

.bp-grid {
  display: grid;
  gap: var(--bp-space-lg);
}

.bp-flex {
  display: flex;
  align-items: center;
}

.bp-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--bp-text-main);
}

h1 { font-size: var(--bp-font-size-4xl); }
h2 { font-size: var(--bp-font-size-3xl); }
h3 { font-size: var(--bp-font-size-2xl); }
h4 { font-size: var(--bp-font-size-xl); }
h5 { font-size: var(--bp-font-size-lg); }
h6 { font-size: var(--bp-font-size-md); }

p {
  margin-bottom: var(--bp-space-md);
  color: var(--bp-text-main);
}

p:last-child {
  margin-bottom: 0;
}

.bp-text-muted {
  color: var(--bp-text-muted);
}

.bp-text-navy {
  color: var(--bp-navy);
}

.bp-text-orange {
  color: var(--bp-orange);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--bp-space-sm);
  padding: 12px 24px;
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-md);
  font-weight: 600;
  line-height: 1;
  transition: var(--bp-transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}

.bp-btn:focus-visible {
  outline: 3px solid var(--bp-orange);
  outline-offset: 2px;
}

.bp-btn-primary {
  background: var(--bp-orange);
  color: #fff;
  border-color: var(--bp-orange);
}

.bp-btn-primary:hover {
  background: var(--bp-orange-bright);
  border-color: var(--bp-orange-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 106, 0, 0.35);
}

.bp-btn-secondary {
  background: transparent;
  color: var(--bp-navy);
  border-color: var(--bp-navy);
}

.bp-btn-secondary:hover {
  background: var(--bp-navy);
  color: #fff;
  transform: translateY(-1px);
}

.bp-btn-navy {
  background: var(--bp-navy);
  color: #fff;
  border-color: var(--bp-navy);
}

.bp-btn-navy:hover {
  background: var(--bp-navy-dark);
  border-color: var(--bp-navy-dark);
  color: #fff;
  transform: translateY(-1px);
}

.bp-btn-ghost {
  background: transparent;
  color: var(--bp-text-muted);
  border-color: var(--bp-border);
}

.bp-btn-ghost:hover {
  border-color: var(--bp-navy);
  color: var(--bp-navy);
}

.bp-btn-sm {
  padding: 8px 16px;
  font-size: var(--bp-font-size-sm);
  min-height: 36px;
}

.bp-btn-lg {
  padding: 16px 32px;
  font-size: var(--bp-font-size-lg);
  min-height: 52px;
}

.bp-btn-full {
  width: 100%;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.bp-form-group {
  margin-bottom: var(--bp-space-lg);
}

.bp-form-label {
  display: block;
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  color: var(--bp-text-main);
  margin-bottom: var(--bp-space-xs);
}

.bp-form-label .required {
  color: var(--bp-error);
  margin-left: 2px;
}

.bp-form-input,
.bp-form-select,
.bp-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--bp-border);
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-md);
  color: var(--bp-text-main);
  background: var(--bp-white);
  transition: var(--bp-transition);
  appearance: none;
  -webkit-appearance: none;
}

.bp-form-input:focus,
.bp-form-select:focus,
.bp-form-textarea:focus {
  outline: none;
  border-color: var(--bp-navy);
  box-shadow: 0 0 0 3px rgba(0, 32, 90, 0.1);
}

.bp-form-input.error,
.bp-form-select.error,
.bp-form-textarea.error {
  border-color: var(--bp-error);
}

.bp-form-error {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-error);
  margin-top: 4px;
}

.bp-form-hint {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
  margin-top: 4px;
}

/* ============================================================
   CARDS
   ============================================================ */

.bp-card {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  box-shadow: var(--bp-shadow-card);
  overflow: hidden;
}

.bp-card-body {
  padding: var(--bp-space-lg);
}

/* ============================================================
   BADGES
   ============================================================ */

.bp-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--bp-radius-full);
  font-size: var(--bp-font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-badge-orange {
  background: var(--bp-orange);
  color: #fff;
}

.bp-badge-navy {
  background: var(--bp-navy);
  color: #fff;
}

.bp-badge-success {
  background: var(--bp-success);
  color: #fff;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.bp-section-heading {
  text-align: center;
  margin-bottom: var(--bp-space-2xl);
}

.bp-section-heading h2 {
  font-size: var(--bp-font-size-3xl);
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
}

.bp-section-heading p {
  font-size: var(--bp-font-size-lg);
  color: var(--bp-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.bp-topbar {
  background: var(--bp-navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  font-size: var(--bp-font-size-sm);
}

.bp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bp-space-md);
}

.bp-topbar-message {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--bp-font-size-sm);
}

.bp-topbar-links {
  display: flex;
  align-items: center;
  gap: var(--bp-space-lg);
}

.bp-topbar-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--bp-font-size-sm);
  text-decoration: none;
  transition: var(--bp-transition);
}

.bp-topbar-links a:hover {
  color: var(--bp-orange);
}

/* ============================================================
   HEADER
   ============================================================ */

.bp-header {
  background: var(--bp-white);
  border-bottom: 1px solid var(--bp-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--bp-shadow-sm);
}

.bp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bp-space-lg);
  padding: 14px 0;
}

.bp-logo {
  flex-shrink: 0;
}

.bp-logo a {
  display: flex;
  align-items: center;
  gap: var(--bp-space-sm);
  text-decoration: none;
}

.bp-logo img {
  height: 40px;
  width: auto;
}

.bp-logo-text {
  font-size: var(--bp-font-size-2xl);
  font-weight: 800;
  color: var(--bp-navy);
  letter-spacing: -0.5px;
}

.bp-logo-text span {
  color: var(--bp-orange);
}

.bp-header-search {
  flex: 1;
  max-width: 480px;
}

.bp-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bp-border);
  border-radius: var(--bp-radius-full);
  overflow: hidden;
  background: var(--bp-warm-white);
  transition: var(--bp-transition);
}

.bp-search-form:focus-within {
  border-color: var(--bp-navy);
  box-shadow: 0 0 0 3px rgba(0, 32, 90, 0.08);
}

.bp-search-input {
  flex: 1;
  padding: 9px 16px;
  border: none;
  background: transparent;
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-main);
  outline: none;
}

.bp-search-input::placeholder {
  color: var(--bp-text-muted);
}

.bp-search-btn {
  padding: 9px 14px;
  background: var(--bp-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--bp-transition);
  display: flex;
  align-items: center;
}

.bp-search-btn:hover {
  background: var(--bp-orange-bright);
}

.bp-header-actions {
  display: flex;
  align-items: center;
  gap: var(--bp-space-md);
  flex-shrink: 0;
}

.bp-header-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bp-text-main);
  font-size: var(--bp-font-size-sm);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--bp-radius-md);
  transition: var(--bp-transition);
}

.bp-header-action-link:hover {
  color: var(--bp-orange);
  background: var(--bp-cream);
}

.bp-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bp-orange);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.bp-nav {
  border-top: 1px solid var(--bp-border-light);
  background: var(--bp-white);
}

.bp-nav-inner {
  display: flex;
  align-items: center;
}

.bp-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-nav ul li a {
  display: block;
  padding: 12px 14px;
  font-size: var(--bp-font-size-sm);
  font-weight: 500;
  color: var(--bp-text-main);
  text-decoration: none;
  border-radius: var(--bp-radius-sm);
  transition: var(--bp-transition);
}

.bp-nav ul li a:hover,
.bp-nav ul li.current-menu-item > a {
  color: var(--bp-orange);
  background: var(--bp-cream);
}

/* Mobile Menu Toggle */
.bp-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--bp-radius-md);
  border: 1.5px solid var(--bp-border);
  color: var(--bp-navy);
  background: transparent;
  cursor: pointer;
  transition: var(--bp-transition);
}

.bp-menu-toggle:hover {
  border-color: var(--bp-navy);
  background: var(--bp-cream);
}

.bp-mobile-menu {
  display: none;
  background: var(--bp-white);
  border-top: 1px solid var(--bp-border-light);
  padding: var(--bp-space-md) 0;
}

.bp-mobile-menu.active {
  display: block;
}

.bp-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-mobile-menu ul li a {
  display: block;
  padding: 12px var(--bp-container-pad);
  font-size: var(--bp-font-size-md);
  font-weight: 500;
  color: var(--bp-text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--bp-border-light);
  transition: var(--bp-transition);
}

.bp-mobile-menu ul li a:hover {
  color: var(--bp-orange);
  background: var(--bp-cream);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.bp-hero {
  background: linear-gradient(135deg, var(--bp-cream) 0%, var(--bp-warm-white) 100%);
  padding: var(--bp-space-4xl) 0;
  overflow: hidden;
  position: relative;
}

.bp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bp-space-3xl);
  align-items: center;
}

.bp-hero-content {
  position: relative;
  z-index: 1;
}

.bp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--bp-space-sm);
  background: rgba(232, 106, 0, 0.1);
  color: var(--bp-orange);
  padding: 6px 14px;
  border-radius: var(--bp-radius-full);
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  margin-bottom: var(--bp-space-lg);
  border: 1px solid rgba(232, 106, 0, 0.2);
}

.bp-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--bp-navy);
  line-height: 1.15;
  margin-bottom: var(--bp-space-lg);
  letter-spacing: -0.5px;
}

.bp-hero-title .highlight {
  color: var(--bp-orange);
}

.bp-hero-desc {
  font-size: var(--bp-font-size-lg);
  color: var(--bp-text-muted);
  line-height: 1.7;
  margin-bottom: var(--bp-space-xl);
  max-width: 480px;
}

.bp-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--bp-space-md);
  flex-wrap: wrap;
}

.bp-hero-trust-cards {
  display: flex;
  flex-direction: column;
  gap: var(--bp-space-md);
  margin-top: var(--bp-space-xl);
}

.bp-trust-card {
  display: inline-flex;
  align-items: center;
  gap: var(--bp-space-sm);
  background: var(--bp-white);
  padding: 10px 16px;
  border-radius: var(--bp-radius-lg);
  box-shadow: var(--bp-shadow-md);
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  color: var(--bp-navy);
  border: 1px solid var(--bp-border-light);
  width: fit-content;
}

.bp-trust-card-icon {
  width: 32px;
  height: 32px;
  background: var(--bp-orange);
  border-radius: var(--bp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.bp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-hero-flower {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, rgba(232, 106, 0, 0.15) 0%, rgba(232, 106, 0, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bp-hero-flower::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(232, 106, 0, 0.2) 0%, rgba(232, 106, 0, 0.08) 70%, transparent 100%);
  border-radius: 50%;
}

.bp-hero-flower-icon {
  font-size: 120px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(232, 106, 0, 0.4));
  animation: bp-float 3s ease-in-out infinite;
}

@keyframes bp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */

.bp-featured-products {
  background: var(--bp-warm-white);
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */

.bp-categories {
  background: var(--bp-cream);
}

.bp-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--bp-space-lg);
}

.bp-category-card {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  padding: var(--bp-space-lg);
  text-align: center;
  border: 1px solid var(--bp-border-light);
  transition: var(--bp-transition-md);
  text-decoration: none;
  display: block;
}

.bp-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
  border-color: var(--bp-orange);
}

.bp-category-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--bp-radius-lg);
  object-fit: cover;
  margin: 0 auto var(--bp-space-md);
  background: var(--bp-cream);
}

.bp-category-name {
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  color: var(--bp-navy);
}

.bp-category-count {
  font-size: var(--bp-font-size-xs);
  color: var(--bp-text-muted);
  margin-top: 4px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.bp-services {
  background: var(--bp-white);
}

.bp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bp-space-lg);
}

.bp-service-card {
  background: var(--bp-cream);
  border-radius: var(--bp-radius-lg);
  padding: var(--bp-space-xl);
  border: 1px solid rgba(232, 106, 0, 0.1);
  transition: var(--bp-transition-md);
}

.bp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-md);
  border-color: var(--bp-orange);
}

.bp-service-icon {
  width: 52px;
  height: 52px;
  background: var(--bp-orange);
  border-radius: var(--bp-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--bp-space-md);
  font-size: 24px;
  color: #fff;
}

.bp-service-title {
  font-size: var(--bp-font-size-lg);
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
}

.bp-service-text {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
  line-height: 1.6;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.bp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bp-space-lg);
}

.bp-product-card {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  overflow: hidden;
  transition: var(--bp-transition-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
  border-color: var(--bp-border-navy);
}

.bp-product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bp-cream);
}

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

.bp-product-card:hover .bp-product-card-image img {
  transform: scale(1.05);
}

.bp-product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.bp-product-card-body {
  padding: var(--bp-space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bp-product-card-subtitle {
  font-size: var(--bp-font-size-xs);
  color: var(--bp-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.bp-product-card-title {
  font-size: var(--bp-font-size-md);
  font-weight: 600;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
  line-height: 1.35;
  flex: 1;
}

.bp-product-card-title a {
  color: inherit;
  text-decoration: none;
}

.bp-product-card-title a:hover {
  color: var(--bp-orange);
}

.bp-product-card-price {
  font-size: var(--bp-font-size-xl);
  font-weight: 800;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-md);
}

.bp-product-card-price del {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
  font-weight: 400;
  margin-right: 6px;
}

.bp-product-card-price ins {
  text-decoration: none;
  color: var(--bp-orange);
}

.bp-product-card-footer {
  padding: 0 var(--bp-space-md) var(--bp-space-md);
}

.bp-product-card .add_to_cart_button,
.bp-product-card .button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bp-space-sm);
  padding: 10px 20px;
  background: var(--bp-navy);
  color: #fff;
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--bp-transition);
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.bp-product-card .add_to_cart_button:hover,
.bp-product-card .button:hover {
  background: var(--bp-orange);
  color: #fff;
  transform: none;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

.bp-shop-hero {
  background: var(--bp-navy);
  padding: var(--bp-space-2xl) 0;
  text-align: center;
}

.bp-shop-hero h1 {
  color: #fff;
  font-size: var(--bp-font-size-3xl);
}

.bp-shop-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--bp-space-sm);
}

.bp-shop-layout {
  padding: var(--bp-space-2xl) 0;
}

.bp-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--bp-space-xl);
  padding-bottom: var(--bp-space-lg);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-shop-result-count {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
}

.bp-shop-ordering select {
  padding: 8px 12px;
  border: 1.5px solid var(--bp-border);
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-main);
  background: var(--bp-white);
  cursor: pointer;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */

.bp-single-product {
  padding: var(--bp-space-2xl) 0;
}

.bp-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bp-space-3xl);
  align-items: start;
}

.bp-product-gallery {
  position: sticky;
  top: 100px;
}

.bp-product-gallery-main {
  border-radius: var(--bp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bp-border-light);
  background: var(--bp-cream);
  aspect-ratio: 1;
}

.bp-product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--bp-space-lg);
}

.bp-product-gallery-thumbs {
  display: flex;
  gap: var(--bp-space-sm);
  margin-top: var(--bp-space-md);
  flex-wrap: wrap;
}

.bp-product-gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--bp-radius-md);
  overflow: hidden;
  border: 2px solid var(--bp-border-light);
  cursor: pointer;
  transition: var(--bp-transition);
  background: var(--bp-cream);
}

.bp-product-gallery-thumb:hover,
.bp-product-gallery-thumb.active {
  border-color: var(--bp-orange);
}

.bp-product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-product-summary {
  display: flex;
  flex-direction: column;
  gap: var(--bp-space-lg);
}

.bp-product-micro-title {
  font-size: var(--bp-font-size-xs);
  font-weight: 600;
  color: var(--bp-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bp-product-title {
  font-size: var(--bp-font-size-3xl);
  font-weight: 800;
  color: var(--bp-navy);
  line-height: 1.2;
}

.bp-product-price-area {
  padding: var(--bp-space-md) 0;
  border-top: 1px solid var(--bp-border-light);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-product-price {
  font-size: var(--bp-font-size-4xl);
  font-weight: 800;
  color: var(--bp-navy);
}

.bp-product-price del {
  font-size: var(--bp-font-size-xl);
  color: var(--bp-text-muted);
  font-weight: 400;
  margin-right: var(--bp-space-sm);
}

.bp-product-price ins {
  text-decoration: none;
  color: var(--bp-orange);
}

.bp-product-short-desc {
  font-size: var(--bp-font-size-md);
  color: var(--bp-text-muted);
  line-height: 1.7;
}

.bp-product-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--bp-space-sm);
}

.bp-product-benefit {
  display: flex;
  align-items: center;
  gap: var(--bp-space-sm);
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-main);
}

.bp-product-benefit::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bp-success);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.bp-product-purchase-hint {
  background: var(--bp-cream);
  border: 1px solid rgba(232, 106, 0, 0.2);
  border-radius: var(--bp-radius-md);
  padding: 10px 14px;
  font-size: var(--bp-font-size-sm);
  color: var(--bp-orange);
  font-weight: 500;
}

.bp-quantity-add {
  display: flex;
  gap: var(--bp-space-md);
  align-items: center;
}

.bp-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bp-border);
  border-radius: var(--bp-radius-md);
  overflow: hidden;
}

.bp-qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-cream);
  color: var(--bp-navy);
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--bp-transition);
}

.bp-qty-btn:hover {
  background: var(--bp-navy);
  color: #fff;
}

.bp-qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--bp-border);
  border-right: 1.5px solid var(--bp-border);
  font-size: var(--bp-font-size-md);
  font-weight: 600;
  color: var(--bp-navy);
  background: var(--bp-white);
}

.bp-qty-input:focus {
  outline: none;
}

.bp-add-to-cart-btn {
  flex: 1;
  padding: 12px 24px;
  background: var(--bp-orange);
  color: #fff;
  border: none;
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--bp-transition);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bp-space-sm);
}

.bp-add-to-cart-btn:hover {
  background: var(--bp-orange-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 106, 0, 0.35);
}

/* Product Info Tabs */
.bp-product-tabs {
  margin-top: var(--bp-space-3xl);
}

.bp-tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--bp-border-light);
  margin-bottom: var(--bp-space-xl);
  overflow-x: auto;
  scrollbar-width: none;
}

.bp-tabs-nav::-webkit-scrollbar {
  display: none;
}

.bp-tab-btn {
  padding: 10px 20px;
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  color: var(--bp-text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--bp-transition);
  white-space: nowrap;
}

.bp-tab-btn:hover {
  color: var(--bp-navy);
}

.bp-tab-btn.active {
  color: var(--bp-orange);
  border-bottom-color: var(--bp-orange);
}

.bp-tab-panel {
  display: none;
}

.bp-tab-panel.active {
  display: block;
}

/* Advanced Pricing Table */
.bp-pricing-table {
  background: var(--bp-cream);
  border-radius: var(--bp-radius-lg);
  padding: var(--bp-space-lg);
  border: 1px solid rgba(232, 106, 0, 0.15);
}

.bp-pricing-table-title {
  font-size: var(--bp-font-size-sm);
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.bp-pricing-table th {
  text-align: left;
  font-size: var(--bp-font-size-xs);
  font-weight: 700;
  color: var(--bp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-pricing-table td {
  padding: 10px 12px;
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-main);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-pricing-table tr:last-child td {
  border-bottom: none;
}

.bp-pricing-table tr.active-rule td {
  background: rgba(232, 106, 0, 0.08);
  font-weight: 700;
  color: var(--bp-orange);
}

/* ============================================================
   CART PAGE
   ============================================================ */

.bp-cart-page {
  padding: var(--bp-space-2xl) 0;
}

.bp-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--bp-space-xl);
  align-items: start;
}

.bp-cart-table {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  overflow: hidden;
}

.bp-cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.bp-cart-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: var(--bp-font-size-xs);
  font-weight: 700;
  color: var(--bp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bp-cream);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--bp-border-light);
  vertical-align: middle;
}

.bp-cart-table tr:last-child td {
  border-bottom: none;
}

.bp-cart-product-info {
  display: flex;
  align-items: center;
  gap: var(--bp-space-md);
}

.bp-cart-product-img {
  width: 72px;
  height: 72px;
  border-radius: var(--bp-radius-md);
  object-fit: cover;
  border: 1px solid var(--bp-border-light);
  flex-shrink: 0;
}

.bp-cart-product-name {
  font-weight: 600;
  color: var(--bp-navy);
  font-size: var(--bp-font-size-sm);
}

.bp-cart-remove {
  color: var(--bp-text-muted);
  font-size: 18px;
  text-decoration: none;
  transition: var(--bp-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.bp-cart-remove:hover {
  color: var(--bp-error);
  background: rgba(217, 45, 32, 0.1);
}

.bp-cart-totals {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  padding: var(--bp-space-lg);
  position: sticky;
  top: 100px;
}

.bp-cart-totals-title {
  font-size: var(--bp-font-size-lg);
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-lg);
  padding-bottom: var(--bp-space-md);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bp-border-light);
  font-size: var(--bp-font-size-sm);
}

.bp-cart-totals-row:last-of-type {
  border-bottom: none;
}

.bp-cart-totals-row.total {
  font-size: var(--bp-font-size-lg);
  font-weight: 800;
  color: var(--bp-navy);
  padding-top: var(--bp-space-md);
  border-top: 2px solid var(--bp-border);
}

.bp-coupon-form {
  display: flex;
  gap: var(--bp-space-sm);
  margin-bottom: var(--bp-space-lg);
}

.bp-coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--bp-border);
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-sm);
}

.bp-cart-empty {
  text-align: center;
  padding: var(--bp-space-4xl) var(--bp-space-lg);
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
}

.bp-cart-empty-icon {
  font-size: 64px;
  margin-bottom: var(--bp-space-lg);
}

.bp-cart-empty h2 {
  font-size: var(--bp-font-size-2xl);
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
}

.bp-cart-empty p {
  color: var(--bp-text-muted);
  margin-bottom: var(--bp-space-xl);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.bp-checkout-page {
  padding: var(--bp-space-2xl) 0;
}

.bp-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--bp-space-xl);
  align-items: start;
}

.bp-checkout-section {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  padding: var(--bp-space-xl);
  margin-bottom: var(--bp-space-lg);
}

.bp-checkout-section-title {
  font-size: var(--bp-font-size-lg);
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-lg);
  padding-bottom: var(--bp-space-md);
  border-bottom: 1px solid var(--bp-border-light);
  display: flex;
  align-items: center;
  gap: var(--bp-space-sm);
}

.bp-checkout-section-title .step-num {
  width: 28px;
  height: 28px;
  background: var(--bp-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--bp-font-size-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.bp-invoice-toggle {
  display: flex;
  gap: var(--bp-space-sm);
  margin-bottom: var(--bp-space-lg);
}

.bp-invoice-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--bp-space-sm);
  padding: 12px 16px;
  border: 2px solid var(--bp-border);
  border-radius: var(--bp-radius-md);
  cursor: pointer;
  transition: var(--bp-transition);
  font-size: var(--bp-font-size-sm);
  font-weight: 500;
}

.bp-invoice-option:hover {
  border-color: var(--bp-navy);
}

.bp-invoice-option.active {
  border-color: var(--bp-navy);
  background: rgba(0, 32, 90, 0.04);
  color: var(--bp-navy);
  font-weight: 600;
}

.bp-corporate-fields {
  display: none;
  margin-top: var(--bp-space-lg);
  padding-top: var(--bp-space-lg);
  border-top: 1px solid var(--bp-border-light);
}

.bp-corporate-fields.visible {
  display: block;
}

.bp-order-summary {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  padding: var(--bp-space-lg);
  position: sticky;
  top: 100px;
}

.bp-order-summary-title {
  font-size: var(--bp-font-size-lg);
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-lg);
  padding-bottom: var(--bp-space-md);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-order-item {
  display: flex;
  align-items: center;
  gap: var(--bp-space-md);
  padding: 12px 0;
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-order-item:last-of-type {
  border-bottom: none;
}

.bp-order-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--bp-radius-md);
  object-fit: cover;
  border: 1px solid var(--bp-border-light);
  flex-shrink: 0;
  background: var(--bp-cream);
}

.bp-order-item-info {
  flex: 1;
}

.bp-order-item-name {
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  color: var(--bp-navy);
}

.bp-order-item-qty {
  font-size: var(--bp-font-size-xs);
  color: var(--bp-text-muted);
}

.bp-order-item-price {
  font-size: var(--bp-font-size-sm);
  font-weight: 700;
  color: var(--bp-navy);
}

.bp-order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: var(--bp-font-size-sm);
  border-bottom: 1px solid var(--bp-border-light);
}

.bp-order-total-row.grand-total {
  font-size: var(--bp-font-size-lg);
  font-weight: 800;
  color: var(--bp-navy);
  border-bottom: none;
  padding-top: var(--bp-space-md);
  border-top: 2px solid var(--bp-border);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.bp-thankyou-page {
  padding: var(--bp-space-3xl) 0;
}

.bp-thankyou-header {
  text-align: center;
  margin-bottom: var(--bp-space-2xl);
}

.bp-thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--bp-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--bp-space-lg);
  font-size: 36px;
  color: #fff;
}

.bp-thankyou-title {
  font-size: var(--bp-font-size-3xl);
  font-weight: 800;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
}

.bp-thankyou-subtitle {
  font-size: var(--bp-font-size-lg);
  color: var(--bp-text-muted);
}

.bp-order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bp-space-lg);
  margin-bottom: var(--bp-space-xl);
}

.bp-order-detail-card {
  background: var(--bp-white);
  border-radius: var(--bp-radius-lg);
  border: 1px solid var(--bp-border-light);
  padding: var(--bp-space-lg);
}

.bp-order-detail-label {
  font-size: var(--bp-font-size-xs);
  font-weight: 600;
  color: var(--bp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bp-order-detail-value {
  font-size: var(--bp-font-size-md);
  font-weight: 700;
  color: var(--bp-navy);
}

/* ============================================================
   LOGIN / REGISTER
   ============================================================ */

.bp-account-page {
  padding: var(--bp-space-3xl) 0;
  background: var(--bp-cream);
  min-height: 80vh;
}

.bp-account-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bp-space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.bp-auth-card {
  background: var(--bp-white);
  border-radius: var(--bp-radius-xl);
  border: 1px solid var(--bp-border-light);
  padding: var(--bp-space-2xl);
  box-shadow: var(--bp-shadow-md);
}

.bp-auth-card-title {
  font-size: var(--bp-font-size-2xl);
  font-weight: 800;
  color: var(--bp-navy);
  margin-bottom: var(--bp-space-sm);
}

.bp-auth-card-subtitle {
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
  margin-bottom: var(--bp-space-xl);
}

.bp-auth-divider {
  text-align: center;
  position: relative;
  margin: var(--bp-space-lg) 0;
  color: var(--bp-text-muted);
  font-size: var(--bp-font-size-sm);
}

.bp-auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bp-border-light);
}

.bp-auth-divider span {
  background: var(--bp-white);
  padding: 0 12px;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */

.bp-footer {
  background: var(--bp-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--bp-space-3xl) 0 0;
}

.bp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--bp-space-2xl);
  padding-bottom: var(--bp-space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-footer-logo {
  margin-bottom: var(--bp-space-md);
}

.bp-footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.bp-footer-logo-text {
  font-size: var(--bp-font-size-2xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.bp-footer-logo-text span {
  color: var(--bp-orange);
}

.bp-footer-desc {
  font-size: var(--bp-font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: var(--bp-space-md);
}

.bp-footer-col-title {
  font-size: var(--bp-font-size-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--bp-space-lg);
}

.bp-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--bp-space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-footer-links a {
  font-size: var(--bp-font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--bp-transition);
}

.bp-footer-links a:hover {
  color: var(--bp-orange);
}

.bp-footer-trust-text {
  font-size: var(--bp-font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.bp-footer-bottom {
  padding: var(--bp-space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--bp-font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

.bp-footer-bottom a {
  color: var(--bp-orange);
  text-decoration: none;
  font-weight: 600;
}

.bp-footer-bottom a:hover {
  color: var(--bp-orange-bright);
}

/* ============================================================
   WOOCOMMERCE NOTICES
   ============================================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--bp-radius-md);
  padding: 14px 16px;
  margin-bottom: var(--bp-space-lg);
  font-size: var(--bp-font-size-sm);
  display: flex;
  align-items: center;
  gap: var(--bp-space-sm);
  border: 1px solid;
}

.woocommerce-message {
  background: rgba(18, 183, 106, 0.08);
  border-color: var(--bp-success);
  color: #0a6640;
}

.woocommerce-info {
  background: rgba(0, 32, 90, 0.06);
  border-color: var(--bp-navy);
  color: var(--bp-navy);
}

.woocommerce-error {
  background: rgba(217, 45, 32, 0.08);
  border-color: var(--bp-error);
  color: var(--bp-error);
}

/* ============================================================
   PAGINATION
   ============================================================ */

.bp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bp-space-sm);
  margin-top: var(--bp-space-2xl);
}

.bp-pagination a,
.bp-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--bp-radius-md);
  font-size: var(--bp-font-size-sm);
  font-weight: 600;
  border: 1.5px solid var(--bp-border);
  color: var(--bp-text-main);
  text-decoration: none;
  transition: var(--bp-transition);
}

.bp-pagination a:hover {
  border-color: var(--bp-navy);
  color: var(--bp-navy);
  background: var(--bp-cream);
}

.bp-pagination .current {
  background: var(--bp-navy);
  border-color: var(--bp-navy);
  color: #fff;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.bp-breadcrumbs {
  padding: var(--bp-space-md) 0;
  font-size: var(--bp-font-size-sm);
  color: var(--bp-text-muted);
}

.bp-breadcrumbs a {
  color: var(--bp-text-muted);
  text-decoration: none;
}

.bp-breadcrumbs a:hover {
  color: var(--bp-orange);
}

.bp-breadcrumbs .sep {
  margin: 0 6px;
  color: var(--bp-border);
}

.bp-breadcrumbs .current {
  color: var(--bp-navy);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .bp-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bp-hero-visual {
    display: none;
  }

  .bp-hero-desc {
    max-width: 100%;
  }

  .bp-hero-actions {
    justify-content: center;
  }

  .bp-hero-trust-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--bp-space-xl);
  }

  .bp-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bp-product-layout {
    grid-template-columns: 1fr;
  }

  .bp-product-gallery {
    position: static;
  }

  .bp-cart-layout {
    grid-template-columns: 1fr;
  }

  .bp-cart-totals {
    position: static;
  }

  .bp-checkout-layout {
    grid-template-columns: 1fr;
  }

  .bp-order-summary {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --bp-container-pad: 16px;
  }

  h1 { font-size: var(--bp-font-size-3xl); }
  h2 { font-size: var(--bp-font-size-2xl); }
  h3 { font-size: var(--bp-font-size-xl); }

  .bp-topbar-links {
    display: none;
  }

  .bp-header-search {
    display: none;
  }

  .bp-menu-toggle {
    display: flex;
  }

  .bp-nav {
    display: none;
  }

  .bp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bp-space-md);
  }

  .bp-services-grid {
    grid-template-columns: 1fr;
  }

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

  .bp-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--bp-space-xl);
  }

  .bp-footer-bottom {
    flex-direction: column;
    gap: var(--bp-space-sm);
    text-align: center;
  }

  .bp-account-layout {
    grid-template-columns: 1fr;
  }

  .bp-order-details-grid {
    grid-template-columns: 1fr;
  }

  .bp-cart-table table {
    display: block;
  }

  .bp-cart-table thead {
    display: none;
  }

  .bp-cart-table tbody,
  .bp-cart-table tr,
  .bp-cart-table td {
    display: block;
  }

  .bp-cart-table tr {
    border-bottom: 1px solid var(--bp-border-light);
    padding: var(--bp-space-md);
  }

  .bp-cart-table td {
    border-bottom: none;
    padding: 4px 0;
  }

  .bp-cart-table td::before {
    content: attr(data-label) ': ';
    font-weight: 600;
    font-size: var(--bp-font-size-xs);
    color: var(--bp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .bp-invoice-toggle {
    flex-direction: column;
  }

  .bp-quantity-add {
    flex-direction: column;
    align-items: stretch;
  }

  .bp-hero {
    padding: var(--bp-space-2xl) 0;
  }

  .bp-section {
    padding: var(--bp-space-2xl) 0;
  }
}

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

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */

.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.woocommerce ul.products {
  display: none !important;
}

.woocommerce-page .woocommerce {
  max-width: 100%;
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .bp-topbar,
  .bp-header,
  .bp-nav,
  .bp-footer,
  .bp-hero-actions {
    display: none;
  }
}
