@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
  PrinterSetupExperts — COMMERCIAL E-COMMERCE DESIGN SYSTEM & STYLESHEET
   Aesthetic: Premium Retail Electronics (Red #C90A0E, Dark #0F0F0E, White #FFFFFF)
   Typography: Manrope (novainkllc.com inspired high-end retail typography)
   ========================================================================== */

:root {
  --primary-red: #C90A0E;
  --primary-black: #0F0F0E;
  --cyan: #008EDA;
  --magenta: #FA0263;
  --yellow: #FCD501;
  --white: #FFFFFF;

  --primary: #C90A0E;
  --primary-dark: #A8080B;
  --secondary: #0F0F0E;
  --ink: #0F0F0E;

  --background: #FFFFFF;
  --surface: #F7F7F7;
  --surface-dark: #0F0F0E;

  --border: #E5E5E5;
  --text: #0F0F0E;
  --text-muted: #666666;

  /* Aliases for backwards compatibility */
  --dark-red: #A8080B;
  --red-hover: #A8080B;
  --red-light: #FFF0F1;
  --dark: #0F0F0E;
  --dark-secondary: #0F0F0E;
  --charcoal: #0F0F0E;
  --bg-white: #FFFFFF;
  --bg-light: #F7F7F7;
  --bg-alt: #FAFAFA;
  --border-dark: #D4D4D4;
  --text-dark: #0F0F0E;
  --star-gold: #FCD501;
  --success-green: #10B981;

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1320px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(15, 15, 14, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 15, 14, 0.07);
  --shadow-lg: 0 10px 24px rgba(15, 15, 14, 0.1);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   HEADER SYSTEM (Top Announcement, Main Bar & Navigation Row)
   ========================================================================== */
/* ==========================================================================
   HEADER SYSTEM (Top Announcement Bar & Single-Row Horizontal Header)
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  text-align: center;
}

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

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  height: 84px;
  padding: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.main-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header Navigation (Minimal 4 Items) */
.header-nav-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.header-nav-link:hover, .header-nav-link.active {
  color: var(--primary);
}

/* Compact Header Search */
.header-search-wrap {
  width: 250px;
  flex-shrink: 0;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.55rem 2.4rem 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
  transition: all var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 10, 14, 0.12);
}

.search-btn {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--secondary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--transition);
}

.search-btn:hover {
  color: var(--primary);
}

/* Right User Actions (Account & Cart) */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.header-action-btn:hover {
  color: var(--primary);
}

.cart-count-badge {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  margin-left: 0.2rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
}

/* Mobile Drawer Nav */
.mobile-drawer {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.drawer-overlay.open {
  display: block;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary, .btn-outline {
  background-color: var(--white);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-secondary:hover, .btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-dark {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: var(--bg-light);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.825rem;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  font-size: 0.725rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-red {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.badge-dark {
  background-color: var(--dark);
  color: var(--bg-white);
}

/* ==========================================================================
   HOMEPAGE HERO (EXACT REFERENCE DESIGN)
   ========================================================================== */
.hero-commercial-banner {
  background-color: #F8F9FC;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-dots-left {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 160px;
  height: 240px;
  background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

.hero-dots-right {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 180px;
  height: 200px;
  background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.5;
}

.hero-swoosh-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-commercial-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 380px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-red-line {
  width: 36px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.hero-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: #111111;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title .text-red {
  color: var(--primary);
}

.hero-copy {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.hero-ctas-row {
  margin-bottom: 1.35rem;
}

.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(201, 10, 14, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.btn-hero-pill:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(201, 10, 14, 0.45);
  transform: translateY(-1px);
}

.hero-trust-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
  max-width: 520px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-circle {
  width: 22px;
  height: 22px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background-color: #E2E8F0;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

/* ==========================================================================
   SHOP BY CATEGORY (PRODUCT-STYLE TILES)
   ========================================================================== */
.section-commercial-padding {
  padding: 4.5rem 0;
}

.section-title-wrap {
  margin-bottom: 2.25rem;
}

.section-main-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.section-sub-heading {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-tile-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.cat-tile-image-area {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cat-tile-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-tile-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.cat-tile-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cat-tile-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: auto;
}

/* ==========================================================================
   PRODUCT CARDS & FEATURED GRIDS
   ========================================================================== */
.products-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .products-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .products-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #D1D5DB;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #FAFAFA;
  border: 1px solid #F3F4F6;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

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

.product-card-img, .card-image-wrap svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img,
.product-card:hover .card-image-wrap svg {
  transform: scale(1.03);
}

.card-sale-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-wishlist-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.card-wishlist-btn:hover, .card-wishlist-btn.active {
  color: var(--primary);
  border-color: var(--primary);
  background-color: var(--red-light);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-category {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.card-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.4rem;
  line-height: 1.38;
  height: 2.76em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-product-name a {
  color: inherit;
  transition: color 0.15s ease;
}

.card-product-name a:hover {
  color: var(--primary);
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.stars-gold {
  color: #F59E0B;
}

.rating-num {
  font-weight: 700;
  color: #111827;
}

.rating-count {
  color: #6B7280;
}

.card-footer-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.price-crossed {
  font-size: 0.85rem;
  color: #9CA3AF;
  text-decoration: line-through;
}

.price-discount-text {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
}

.card-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.card-add-btn:hover {
  background-color: var(--primary-dark);
}

.card-add-btn:active {
  transform: scale(0.98);
}

/* ==========================================================================
   SHOPPING TRUST STRIP
   ========================================================================== */
.shopping-trust-strip {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--surface);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition);
}

.trust-strip-item:hover .trust-strip-icon {
  color: var(--primary);
}

.trust-strip-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.trust-strip-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES (EXACT 11-SECTION ARCHITECTURE)
   ========================================================================== */

/* 1. Category Cards Upgrade */
.category-card {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.category-card:hover .cat-image-wrap svg {
  transform: scale(1.03);
}

.category-card:hover .cat-arrow-icon {
  transform: translateX(4px);
  color: var(--primary-red);
}

.cat-num-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.cat-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.cat-image-wrap svg {
  max-width: 85%;
  max-height: 85%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.cat-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cat-card-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-red);
}

.cat-arrow-icon {
  transition: transform var(--transition);
}

/* 2. Split Image & Content Sections (#1 and #2 - Reference-Matched Design) */
.split-ref-section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  background-color: var(--white);
}

.split-ref-sec1 {
  background-color: #FAFAFC;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-ref-sec2 {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Background graphics & dots */
.split-ref-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.split-ref-swoosh-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.split-ref-dots-left {
  position: absolute;
  top: 10%;
  left: 15px;
  width: 120px;
  height: 200px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.35;
}

.split-ref-dots-right-top {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.65;
}

.split-ref-dots-left-sec2 {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.5;
}

.split-ref-dots-right-sec2 {
  position: absolute;
  top: 10%;
  right: 15px;
  width: 120px;
  height: 180px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.35;
}

.position-relative {
  position: relative;
}

.z-2 {
  z-index: 2;
}

/* Section Grid */
.split-ref-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 3.5rem;
  align-items: center;
}

.split-ref-sec2 .split-ref-grid {
  grid-template-columns: 52% 48%;
}

/* Image Column & Wrapper */
.split-ref-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-ref-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 18px;
}

/* Corner Red Accent Frames */
.red-accent-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  background-color: var(--primary);
  border-radius: 24px;
  z-index: 1;
}

.red-accent-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 130px;
  background-color: var(--primary);
  border-radius: 24px;
  z-index: 1;
}

.red-accent-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 140px;
  background-color: var(--primary);
  border-radius: 24px;
  z-index: 1;
}

.red-accent-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 130px;
  background-color: var(--primary);
  border-radius: 24px;
  z-index: 1;
}

.red-dots-matrix-left {
  position: absolute;
  top: 30%;
  left: -20px;
  width: 80px;
  height: 140px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.6;
  z-index: 0;
}

.red-dots-matrix-right {
  position: absolute;
  bottom: 20%;
  right: -20px;
  width: 80px;
  height: 140px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.6;
  z-index: 0;
}

/* Floating Badge in Section 2 */
.split-ref-floating-badge {
  position: absolute;
  top: 22%;
  left: -12px;
  width: 58px;
  height: 58px;
  background-color: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

/* Main Image Box */
.split-ref-img-box {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
  border: 4px solid var(--white);
}

.split-ref-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Column */
.split-ref-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-ref-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.split-ref-red-line {
  width: 32px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.split-ref-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-ref-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.split-ref-title .text-red {
  color: var(--primary);
}

.title-serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
}

.split-ref-desc {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

/* 3-Column Feature Cards Row */
.split-ref-features {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}

.split-ref-feat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.split-ref-icon-square {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #FDE8E8;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split-ref-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FDE8E8;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split-ref-feat-label {
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
}

.split-ref-feat-label-single {
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
  white-space: nowrap;
}

.split-ref-feat-divider {
  width: 1px;
  height: 36px;
  background-color: #E2E8F0;
  flex-shrink: 0;
}

/* CTA Pill Button */
.split-ref-cta {
  margin-bottom: 1.5rem;
}

.btn-ref-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(201, 10, 14, 0.3);
  transition: all 0.25s ease;
  border: none;
}

.btn-ref-pill:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(201, 10, 14, 0.4);
  transform: translateY(-1px);
}

/* Bottom Trust Bar in Section 2 */
.split-ref-trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E2E8F0;
  max-width: 520px;
}

.split-ref-trust-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #444444;
}

.split-ref-trust-line {
  width: 1px;
  height: 18px;
  background-color: #CBD5E1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .split-ref-grid,
  .split-ref-sec2 .split-ref-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .split-ref-features {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .split-ref-feat-divider {
    display: none;
  }
  
  .split-ref-trust-strip {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .split-ref-section {
    padding: 3rem 0;
  }
  
  .split-ref-img-wrapper {
    padding: 12px;
  }
  
  .red-accent-top-left,
  .red-accent-bottom-right,
  .red-accent-bottom-left,
  .red-accent-top-right {
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }
  
  .split-ref-title {
    font-size: 1.75rem;
  }
  
  .split-ref-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  
  .split-ref-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  
  .split-ref-trust-line {
    display: none;
  }
}

/* 3. How It Works Section (Full-Width Edge-to-Edge Image) */
.how-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.how-it-works-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4. Testimonials Section (Exact Reference Design) */
.testimonials-section {
  position: relative;
  padding: 4.5rem 0;
  background-color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.testi-bg-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.testi-dots-left {
  position: absolute;
  top: 15%;
  left: 20px;
  width: 140px;
  height: 180px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.35;
}

.testi-dots-right {
  position: absolute;
  top: 15%;
  right: 20px;
  width: 140px;
  height: 180px;
  background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.55;
}

.testi-swoosh-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Header Elements */
.testi-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testi-eyebrow-line {
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.testi-eyebrow-text {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.testi-title .text-red {
  color: var(--primary);
}

.testi-subtitle {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.5;
}

/* Testimonial Cards Carousel Slider Container & Track */
.testi-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
  touch-action: pan-y;
}

.testi-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testi-slider-track .testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  box-sizing: border-box;
  background-color: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.testi-slider-track .testimonial-card:hover {
  box-shadow: 0 14px 36px rgba(201, 10, 14, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .testi-slider-track .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 640px) {
  .testi-slider-track .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Slider Controls: Arrows & Dots */
.testi-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.testi-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.testi-arrow-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(201, 10, 14, 0.3);
  transform: translateY(-1px);
}

.testi-dots-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testi-dot.active {
  width: 28px;
  border-radius: 12px;
  background-color: var(--primary);
}

.testi-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  color: #FCD501;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testi-quote-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FDE8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 1.5rem;
  min-height: 72px;
}

.testi-card-divider {
  width: 100%;
  height: 1px;
  background-color: #E2E8F0;
  margin-bottom: 1.25rem;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FDE8E8;
  color: #111111;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.15rem;
}

.author-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666666;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-quote {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 3rem 0;
  }
}

/* 5. FAQ Accordion Section (Exact Reference Design) */
.faq-section {
  position: relative;
  padding: 4.5rem 0;
  background-color: #FAFAFC;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-bg-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.faq-dots-left {
  position: absolute;
  top: 15%;
  left: 20px;
  width: 140px;
  height: 180px;
  background-image: radial-gradient(#F87171 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.35;
}

.faq-dots-right {
  position: absolute;
  top: 10%;
  right: 20px;
  width: 140px;
  height: 180px;
  background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.55;
}

.faq-swoosh-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Header Elements */
.faq-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.faq-eyebrow-line {
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.faq-eyebrow-text {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.faq-title .text-red {
  color: var(--primary);
}

.faq-subtitle {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.5;
}

/* 2-Column Grid matching BUILT FOR EVERYDAY PRINTING proportions */
.faq-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Image Column */
.faq-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image-wrap {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.faq-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

/* Right Accordion Column */
.faq-accordion-col {
  width: 100%;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #F8C8CA;
  box-shadow: 0 6px 20px rgba(201, 10, 14, 0.08);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(201, 10, 14, 0.12);
}

.faq-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  background-color: #FDE8E8;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 8px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.faq-question-text {
  font-size: 0.975rem;
  font-weight: 800;
  color: #111111;
  text-align: left;
  flex: 1;
  line-height: 1.35;
}

.faq-circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-circle-icon {
  transform: rotate(45deg);
}

/* Accordion Answer Pane */
.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-pane {
  max-height: 200px;
}

.faq-answer-text {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  padding: 0 1.25rem 1.15rem 3.5rem;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .faq-image-col {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-question-btn {
    padding: 0.85rem 1rem;
  }
  
  .faq-num-badge {
    margin-right: 0.65rem;
  }
  
  .faq-answer-text {
    padding: 0 1rem 1rem 1rem;
  }
}

/* ==========================================================================
   REDESIGNED E-COMMERCE FOOTER SYSTEM
   ========================================================================== */
.site-footer,
.commercial-footer {
  background-color: #111111;
  color: #FFFFFF;
  padding: 3.5rem 0 0 0;
  margin-top: auto;
  border-top: 1px solid #222222;
}

.footer-grid,
.footer-4col-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #B5B5B5;
  line-height: 1.6;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  color: #B5B5B5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--primary-red);
  transform: translateY(-1px);
}

.footer-col-title,
.footer-column-title {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}

.footer-links-list,
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.footer-link,
.footer-link-list a {
  color: #B5B5B5;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link-list a:hover {
  color: var(--primary-red);
}

.footer-contact-list {
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.footer-copyright-bar {
  border-top: 1px solid #222222;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-copyright-bar p {
  font-size: 0.85rem;
  color: #B5B5B5;
  margin: 0;
}

@media (max-width: 991px) {
  .footer-grid,
  .footer-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid,
  .footer-4col-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }

  .site-footer,
  .commercial-footer {
    padding-top: 2.5rem;
  }

  .footer-copyright-bar {
    padding: 1rem 0;
  }
}

/* ==========================================================================
   SHOP PAGE CATALOG & SIDEBAR FILTERS
   ========================================================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.catalog-sidebar {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sidebar-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.filter-label input[type="checkbox"] {
  accent-color: var(--primary-red);
  width: 16px;
  height: 16px;
}

.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

/* ==========================================================================
   PRODUCT DETAILS 55% / 45% DESKTOP GRID
   ========================================================================== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.gallery-stage {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-specs-table th, .detail-specs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  text-align: left;
}

.detail-specs-table th {
  background-color: var(--bg-light);
  width: 35%;
  font-weight: 700;
  color: var(--dark);
}

/* ==========================================================================
   CART & CHECKOUT
   ========================================================================== */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.summary-panel {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.summary-total-row {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  border-top: 1.5px solid var(--border-dark);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Premium Toast Notification System */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 380px;
  width: calc(100% - 32px);
}

.toast {
  pointer-events: auto;
  position: relative;
  background-color: #FFFFFF;
  color: #0F0F0E;
  border: 1px solid rgba(15, 15, 14, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.9rem 0.9rem;
  box-shadow: 0 10px 25px -5px rgba(15, 15, 14, 0.08), 0 4px 10px -2px rgba(15, 15, 14, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) translateX(24px);
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(-6px) translateX(20px);
  transition: opacity 250ms ease, transform 250ms ease;
}

/* Icon Badges */
.toast-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-icon-success,
.toast-icon-error {
  background-color: #FFF0F1;
}

.toast-icon-warning {
  background-color: #FEF9C3;
}

.toast-icon-info {
  background-color: #E0F2FE;
}

/* Content & Typography */
.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 0.5rem;
}

.toast-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0F0F0E;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.toast-subtext {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #666666;
  line-height: 1.4;
}

/* Close Button */
.toast-close-btn {
  background: none;
  border: none;
  color: #9CA3AF;
  padding: 0.2rem;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  margin-right: -4px;
  transition: color 0.15s ease, background-color 0.15s ease;
  flex-shrink: 0;
}

.toast-close-btn:hover {
  color: #0F0F0E;
  background-color: #F3F4F6;
}

/* Subtle Red Progress Indicator Bar */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary-red, #C90A0E);
  transform-origin: left;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.toast.show .toast-progress {
  animation: toastProgress 3500ms linear forwards;
}

@keyframes toastProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/* Responsive Mobile Layout */
@media (max-width: 600px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .toast {
    width: 100%;
    border-radius: 10px;
    padding: 0.8rem 0.85rem;
  }
}

/* Wishlist Product Grid Layout */
.wishlist-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .wishlist-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .wishlist-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-commercial-banner {
    padding: 1.5rem 0 1.75rem 0;
  }

  .hero-commercial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-product-img {
    max-width: 460px;
  }

  .hero-right {
    justify-content: center;
  }

  .crop-mark, .registration-mark {
    display: none;
  }

  .hero-commercial-grid, .dark-promo-banner, .product-detail-layout, .cart-layout-grid, .catalog-layout, .split-grid, .premium-cta-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-tiles-grid, .products-4col-grid, .trust-strip-grid, .usecase-grid, .why-3col-grid, .footer-4col-grid, .how-steps-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav-group {
    display: none;
  }

  .header-search-wrap {
    width: 200px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .premium-cta-banner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .hero-commercial-banner {
    padding: 1.25rem 0 1.5rem 0;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 0.975rem;
    margin-bottom: 1.25rem;
  }

  .hero-product-img {
    width: 100%;
    max-width: 100%;
  }

  .cmyk-strip {
    display: none;
  }

  .category-tiles-grid, .trust-strip-grid, .usecase-grid, .why-3col-grid, .footer-4col-grid, .how-steps-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .products-4col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .products-4col-grid .product-card {
    padding: 0.75rem;
  }

  .products-4col-grid .card-product-name {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .products-4col-grid .card-image-wrap {
    height: 130px;
  }

  .products-4col-grid .price-main {
    font-size: 0.95rem;
  }

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

  .main-logo {
    height: 44px;
  }

  .action-btn-label {
    display: none;
  }

  .hero-trust-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero-trust-wrapper .trust-divider {
    display: none;
  }

  .newsletter-compact-strip {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .premium-cta-banner {
    padding: 2.25rem 1.5rem;
  }

  .split-image-col {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   ABOUT US PAGE DEDICATED BRAND STYLES
   ========================================================================== */
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.principle-card {
  background-color: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  border-color: #F8C8CA;
  box-shadow: 0 8px 24px rgba(201, 10, 14, 0.08);
  transform: translateY(-2px);
}

.principle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  background-color: #FDE8E8;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.principle-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.5rem;
}

.principle-desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

/* Checklist in About Sections */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.975rem;
  font-weight: 700;
  color: #111111;
}

/* What We Offer Grid */
.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-offer-card {
  background-color: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.about-offer-card:hover {
  border-color: #F8C8CA;
  box-shadow: 0 10px 24px rgba(201, 10, 14, 0.09);
  transform: translateY(-2px);
}

.offer-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #FDE8E8;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.offer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.4rem;
}

.offer-desc {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.offer-link-text {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary);
}

/* Steps Grid */
.about-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-step-card {
  background-color: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
}

.about-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.5rem;
}

.about-step-desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

/* Trust Strip */
.about-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  max-width: 980px;
  margin: 0 auto;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-trust-item .trust-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
}

.about-trust-divider {
  width: 1px;
  height: 24px;
  background-color: #CBD5E1;
}

/* Responsive Queries for About Page */
@media (max-width: 991px) {
  .about-principles-grid,
  .about-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .about-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-trust-strip {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .about-trust-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-principles-grid,
  .about-offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   HERO SPLIT-REF ACCENT FRAME (MATCHING BLUEPRINT REFERENCE)
   ========================================================================== */
.split-ref-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 1.25rem;
  margin: 0 auto;
}

.red-accent-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  z-index: 1;
  pointer-events: none;
}

.red-accent-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
  z-index: 1;
  pointer-events: none;
}

.hero-img-frame {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-ref-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* SPLIT-REF HERO COMPONENT STYLES */
.split-ref-section {
  padding: 3.5rem 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.split-ref-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .split-ref-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.split-ref-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-ref-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.split-ref-red-line {
  width: 36px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.split-ref-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-ref-title {
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #111111;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.split-ref-desc {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.btn-ref-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 34px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.025rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(201, 10, 14, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.btn-ref-pill:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(201, 10, 14, 0.45);
  transform: translateY(-1px);
}

.split-ref-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-ref-img-box {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.split-ref-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ==========================================================================
   BLOG LISTING & BLOG DETAILS STYLES
   ========================================================================== */
.blog-filter-section {
  padding: 2.5rem 0 1.5rem 0;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: 1px solid #E2E8F0;
  background-color: #F8F9FC;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover {
  background-color: #EDF2F7;
  color: #111111;
}

.blog-filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 10, 14, 0.3);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E1;
}

.blog-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #F1F5F9;
}

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

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

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.825rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111111;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

/* BLOG DETAILS STYLES */
.blog-details-header {
  margin-bottom: 2rem;
}

.blog-details-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem 0;
  color: #64748B;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-details-banner {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2.5rem;
}

.blog-details-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.blog-details-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #111111;
  margin: 2rem 0 1rem 0;
}

.blog-details-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111111;
  margin: 1.5rem 0 0.75rem 0;
}

.blog-details-body p {
  margin-bottom: 1.25rem;
}

.blog-details-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-details-body li {
  margin-bottom: 0.5rem;
}

.blog-callout {
  background-color: #FEF2F2;
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.75rem 0;
}

.blog-callout p {
  margin: 0;
  color: #991B1B;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT PAGE REDESIGN STYLES (SECTIONS BELOW HERO)
   ========================================================================== */

/* Section 1 & 2 Grids */
.contact-intro-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 3rem;
  align-items: start;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 3rem;
  align-items: center;
}

/* Contact Info Cards */
.contact-info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-info-card-item {
  background-color: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-info-card-item:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.contact-info-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #FFEDED;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-info-label {
  font-size: 0.775rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

.contact-info-value:hover {
  color: var(--primary);
}

/* Premium Contact Form Styling */
.contact-form-card {
  background-color: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.contact-input-field {
  width: 100%;
  height: 48px;
  padding: 0 1.1rem;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111111;
  transition: all 0.2s ease;
  outline: none;
}

.contact-input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 10, 14, 0.12);
}

.contact-textarea-field {
  width: 100%;
  height: 130px;
  padding: 1rem 1.1rem;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111111;
  transition: all 0.2s ease;
  outline: none;
  resize: vertical;
}

.contact-textarea-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 10, 14, 0.12);
}

.contact-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.4rem;
}

/* Why Contact Us 3-Block Row */
.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-contact-block {
  background-color: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.why-contact-block:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.why-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #FFEDED;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-contact-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.6rem;
}

.why-contact-desc {
  font-size: 0.925rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

/* Final Contact Strip */
.final-contact-strip {
  background: linear-gradient(135deg, #FFF3F4 0%, #FFFFFF 100%);
  border: 1px solid #FCA5A5;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 4rem 0 2rem 0;
}

@media (max-width: 991px) {
  .contact-intro-grid,
  .contact-form-grid,
  .why-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-contact-strip {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

/* ==========================================================================
  PrinterSetupExperts PAGINATION STYLES
   ========================================================================== */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  user-select: none;
}

.pagination-btn:hover:not(.disabled):not(.active) {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #FFF0F1;
}

.pagination-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  border-color: var(--border);
}

@media (max-width: 576px) {
  .contact-info-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
  PrinterSetupExperts — CART PAGE REFERENCE REDESIGN
   Exact recreation matching reference image (media_1789756829712.png)
   ========================================================================== */

.cart-page-section {
  position: relative;
  padding: 2.5rem 0 5rem;
  background-color: #FAFAFA;
}

/* Ambient glow */
.cart-page-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 10, 14, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.cart-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cart-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.eyebrow-dash {
  font-weight: 900;
}

.cart-main-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.cart-main-heading .text-red {
  color: var(--primary);
}

.cart-subheading {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* Top Right Item Badge */
.cart-item-count-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 50px;
  padding: 0.5rem 1.25rem 0.5rem 0.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cart-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF0F1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.cart-badge-count {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.cart-badge-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* 2-Column Layout */
.ref-cart-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left Table Card */
.ref-cart-table-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ref-cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.ref-cart-table th {
  text-align: left;
  padding: 0 0.5rem 1rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #111111;
  border-bottom: 1px solid #E5E5E5;
}

.ref-cart-table td {
  padding: 1.5rem 0.5rem;
  vertical-align: middle;
}

.ref-cart-table tr:not(:last-child) td {
  border-bottom: 1px solid #F0F0F0;
}

/* Item details */
.ref-cart-item-flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ref-cart-img-box {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 6px;
}

.ref-cart-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ref-cart-item-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 0.25rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.ref-cart-item-title:hover {
  color: var(--primary);
}

.ref-cart-sku {
  font-size: 0.775rem;
  color: #888888;
  display: block;
  margin-bottom: 0.35rem;
}

.ref-cart-stock-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  color: #059669;
  background: #E6F4EA;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.ref-cart-price {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  white-space: nowrap;
}

/* Quantity Control Capsule */
.ref-qty-capsule {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 2px;
}

.ref-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #374151;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.ref-qty-btn:hover {
  background: #E5E7EB;
  color: #111111;
}

.ref-qty-val {
  width: 36px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #111111;
}

.ref-cart-subtotal {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.ref-cart-trash-btn {
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.ref-cart-trash-btn:hover {
  color: var(--primary);
}

/* Table Bottom Actions Row */
.ref-cart-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F0F0F0;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 8px;
  border: 1.5px solid #111111;
  background: #FFFFFF;
  color: #111111;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-continue-shopping:hover {
  background: #111111;
  color: #FFFFFF;
}

.btn-clear-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 8px;
  border: 1px solid #FCA5A5;
  background: #FFF5F5;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-cart:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* Trust Features Strip */
.ref-trust-strip {
  background: #FFF5F6;
  border: 1px solid #FFE3E5;
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ref-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ref-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFEBEB;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ref-trust-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
}

.ref-trust-desc {
  font-size: 0.775rem;
  color: #666666;
  line-height: 1.2;
  margin-top: 2px;
}

/* Right Column Order Summary Card */
.ref-summary-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 100px;
}

.ref-summary-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.35rem 0;
}

.ref-summary-sub {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.5rem;
}

.ref-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #666666;
}

.ref-summary-row .val {
  font-weight: 800;
  color: #111111;
}

.ref-summary-row .val-green {
  font-weight: 800;
  color: #10B981;
}

.ref-summary-divider {
  border-bottom: 1px solid #E5E5E5;
  margin: 1.25rem 0;
}

.ref-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.ref-total-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
}

.ref-total-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
}

/* Promo Code Box */
.ref-promo-box {
  background: #FFF8F8;
  border: 1px dashed #FCA5A5;
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.ref-promo-header {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.ref-promo-icon {
  color: var(--primary);
  margin-top: 2px;
}

.ref-promo-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
}

.ref-promo-sub {
  font-size: 0.775rem;
  color: #666666;
  line-height: 1.2;
  margin-top: 2px;
}

.ref-promo-input-row {
  display: flex;
  gap: 0.5rem;
}

.ref-promo-input {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  outline: none;
}

.ref-promo-input:focus {
  border-color: var(--primary);
}

.ref-promo-btn {
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}

.ref-promo-btn:hover {
  background: var(--primary-dark);
}

.ref-promo-caption {
  font-size: 0.75rem;
  color: #777777;
  margin-top: 0.5rem;
  display: block;
}

/* Proceed to Checkout Button */
.btn-proceed-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(201, 10, 14, 0.25);
  transition: all 0.2s;
}

.btn-proceed-checkout:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(201, 10, 14, 0.35);
  transform: translateY(-1px);
}

/* Free Shipping Pill */
.ref-free-ship-badge {
  background: #E6F4EA;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .ref-cart-layout {
    grid-template-columns: 1fr;
  }
  .ref-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-summary-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .ref-cart-table-card {
    padding: 1.25rem;
  }
  .ref-trust-strip {
    grid-template-columns: 1fr;
  }
  .ref-cart-table {
    display: block;
    overflow-x: auto;
  }
}

/* ==========================================================================
  PrinterSetupExperts — PRODUCT DETAILS REFERENCE REDESIGN
   Exact recreation matching reference image (media_1789757297675.png)
   ========================================================================== */

.pdetail-section {
  padding: 2.5rem 0 5rem;
  background-color: #FAFAFA;
}

/* 2-Column Hero Layout */
.pdetail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Gallery Layout */
.pdetail-gallery-wrap {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.pdetail-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pdetail-thumb-box {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1.5px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pdetail-thumb-box.active,
.pdetail-thumb-box:hover {
  border-color: var(--primary);
}

.pdetail-thumb-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pdetail-stage-box {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  min-height: 420px;
}

.pdetail-stage-box img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.pdetail-zoom-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Quick Capability Bubbles */
.pdetail-caps-row {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.pdetail-cap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.pdetail-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFEBEB;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdetail-cap-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4B5563;
}

/* Right Buying Details Panel */
.pdetail-info-panel {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.pdetail-badge-tag {
  display: inline-block;
  background: #FFF0F1;
  color: var(--primary);
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdetail-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.pdetail-meta-line {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0.75rem;
}

.pdetail-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.pdetail-stars {
  color: #FFB800;
  font-size: 1.1rem;
}

.pdetail-rating-num {
  font-weight: 800;
  color: #111111;
}

.pdetail-reviews-count {
  color: #666666;
}

.pdetail-review-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.pdetail-short-desc {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Price Block */
.pdetail-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.pdetail-main-price {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.pdetail-old-price {
  font-size: 1.15rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}

.pdetail-save-badge {
  background: #FFEBEB;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.pdetail-stock-shipping-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
}

.pdetail-stock-pill {
  background: #E6F4EA;
  color: #059669;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.pdetail-ship-note {
  color: #64748B;
  font-weight: 600;
}

/* Main Action Rows */
.pdetail-action-row-1 {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-add-to-cart-lg {
  flex: 1;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(201, 10, 14, 0.25);
  transition: all 0.2s;
}

.btn-add-to-cart-lg:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(201, 10, 14, 0.35);
  transform: translateY(-1px);
}

.pdetail-action-row-2 {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.btn-pdetail-sec {
  flex: 1;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-pdetail-sec:hover {
  background: #FFF0F1;
}

.btn-pdetail-sec.active {
  background: var(--primary);
  color: #FFFFFF;
}

/* Detail Trust Strip */
.pdetail-trust-strip {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 1.25rem;
  gap: 0.75rem;
}

.pdetail-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pdetail-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFEBEB;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdetail-trust-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
}

.pdetail-trust-sub {
  font-size: 0.725rem;
  color: #64748B;
  line-height: 1.1;
}

/* Feature Highlights Strip (Section 2) */
.pdetail-highlights-strip {
  background: #FFF5F6;
  border: 1px solid #FFE3E5;
  border-radius: 18px;
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pdetail-hl-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pdetail-hl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFEBEB;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdetail-hl-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
}

.pdetail-hl-desc {
  font-size: 0.775rem;
  color: #64748B;
  line-height: 1.25;
  margin-top: 2px;
}

/* Tabs Area (Section 3) */
.pdetail-tabs-wrapper {
  margin-bottom: 4rem;
}

.pdetail-tabs-nav {
  display: flex;
  gap: 2rem;
  border-bottom: 2px solid #E2E8F0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pdetail-tab-btn {
  background: none;
  border: none;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.pdetail-tab-btn:hover {
  color: var(--primary);
}

.pdetail-tab-btn.active {
  color: var(--primary);
  font-weight: 800;
}

.pdetail-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

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

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

/* Overview Tab Layout */
.pdetail-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.pdetail-ov-heading {
  font-size: 1.6rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 1rem;
}

.pdetail-ov-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pdetail-ov-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pdetail-ov-checkitem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
}

.pdetail-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.pdetail-lifestyle-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-height: 340px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdetail-lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.pdetail-lifestyle-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pdetail-lifestyle-overlay h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.pdetail-lifestyle-bar {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Specs Table */
.pdetail-specs-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}

.pdetail-specs-table th {
  background: #F8FAFC;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111111;
  width: 35%;
  border-bottom: 1px solid #E2E8F0;
  border-right: 1px solid #E2E8F0;
}

.pdetail-specs-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #E2E8F0;
}

/* Related Products Header & Carousel Controls */
.pdetail-related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.pdetail-related-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.25rem;
}

.pdetail-related-sub {
  color: #64748B;
  font-size: 0.95rem;
}

.pdetail-carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.pdetail-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  transition: all 0.2s;
}

.pdetail-nav-arrow.active,
.pdetail-nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .pdetail-hero-grid,
  .pdetail-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pdetail-highlights-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pdetail-gallery-wrap {
    flex-direction: column-reverse;
  }
  .pdetail-thumb-strip {
    flex-direction: row;
    justify-content: center;
  }
  .pdetail-highlights-strip {
    grid-template-columns: 1fr;
  }
  .pdetail-trust-strip {
    flex-direction: column;
    gap: 1rem;
  }
  .pdetail-action-row-1,
  .pdetail-action-row-2 {
    flex-direction: column;
  }
}

/* ==========================================================================
   YOU MAY ALSO LIKE RECOMMENDATIONS SECTION STYLES
   ========================================================================== */
.pdetail-related-section {
  position: relative;
  width: 100%;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 768px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ==========================================================================
  PrinterSetupExperts — ACCOUNT PAGE REFERENCE RECREATION
   Exact recreation matching reference image (media_1789758483922.png)
   ========================================================================== */

.acc-page-section {
  position: relative;
  padding: 3.5rem 0 6rem;
  background-color: #FAFAFA;
  overflow: hidden;
}

/* Background ambient glows & dot grid */
.acc-page-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 10, 14, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.acc-page-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 10, 14, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.acc-hero-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 3.5rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.acc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.acc-red-line {
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.acc-heading {
  font-size: 2.35rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.acc-subheading {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.acc-btn-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-acc-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  border-radius: 10px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(201, 10, 14, 0.25);
  transition: all 0.2s;
}

.btn-acc-signin:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(201, 10, 14, 0.35);
  transform: translateY(-1px);
}

.btn-acc-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-acc-create:hover {
  background: #FFF0F1;
}

/* Right Illustration Composite Stage */
.acc-illustration-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-illustration-box {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logged-In User Dashboard Styles */
.acc-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.acc-user-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.acc-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFF0F1;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FCA5A5;
}

.acc-user-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.2rem;
}

.acc-user-email {
  font-size: 0.9rem;
  color: #666666;
}

/* Responsive rules */
@media (max-width: 1024px) {
  .acc-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .acc-hero-card {
    padding: 2.5rem;
  }
}

@media (max-width: 640px) {
  .acc-hero-card {
    padding: 1.75rem 1.25rem;
  }
  .acc-heading {
    font-size: 1.85rem;
  }
  .acc-btn-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-acc-signin,
  .btn-acc-create {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   MY ACCOUNT PAGE — PREMIUM REDESIGN STYLES
   ========================================================================== */
.acc-page-section {
  padding: 3rem 0 5rem;
  background-color: #FAF9F8;
  min-height: 75vh;
}

.acc-auth-container {
  max-width: 1040px;
  margin: 0 auto;
}

/* Compact Page Intro Header */
.acc-intro-wrap {
  text-align: center;
  margin-bottom: 2.25rem;
}

.acc-intro-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.acc-intro-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.975rem;
  color: #666666;
  margin: 0;
}

/* Unified Card Wrapper */
.acc-auth-card-unified {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 3rem;
  box-sizing: border-box;
}

/* 2-Column Grid */
.acc-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
}

/* Column Styling & Divider */
.acc-auth-col {
  display: flex;
  flex-direction: column;
}

.acc-auth-col-login {
  padding-right: 1.5rem;
  border-right: 1px solid #EAEAEA;
}

.acc-auth-col-register {
  padding-left: 0.5rem;
}

.acc-auth-header {
  margin-bottom: 2rem;
}

.acc-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 0.4rem;
  letter-spacing: -0.3px;
}

.acc-col-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.45;
  margin: 0;
}

/* Form Controls & Labels */
.acc-auth-form .form-group {
  margin-bottom: 1.35rem;
}

.acc-auth-form .form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.acc-auth-form .form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.45rem;
}

.acc-auth-form .form-label .required {
  color: var(--primary-red);
  margin-left: 2px;
}

.acc-auth-form .form-control {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-black);
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.acc-auth-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(201, 10, 14, 0.12);
}

.acc-auth-form .form-control::placeholder {
  color: #999999;
}

/* Password Input Wrapper & Eye Toggle Button */
.password-input-wrap {
  position: relative;
  width: 100%;
}

.password-input-wrap .form-control {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #666666;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 0;
  outline: none;
  user-select: none;
}

.password-toggle-btn:hover {
  color: var(--primary-black);
  background-color: #F5F5F5;
}

.password-toggle-btn:focus-visible {
  outline: 2px solid var(--primary-red);
}

.password-toggle-btn .eye-icon {
  display: block;
  pointer-events: none;
}

/* Options (Remember me & Forgot Password) */
.acc-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.acc-remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #444444;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.acc-remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-red);
  cursor: pointer;
}

.acc-forgot-link {
  color: var(--primary-red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.acc-forgot-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Primary Button Styling */
.btn-acc-primary {
  width: 100%;
  height: 48px;
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(201, 10, 14, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-acc-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(201, 10, 14, 0.25);
}

.btn-acc-primary:active {
  transform: translateY(1px);
}

/* Security Note Footer */
.acc-auth-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.825rem;
  color: #888888;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .acc-auth-card-unified {
    padding: 2.25rem 1.75rem;
  }
  .acc-auth-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .acc-auth-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .acc-auth-col-login {
    padding-right: 0;
    border-right: none;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #EAEAEA;
  }
  .acc-auth-col-register {
    padding-left: 0;
  }
  .acc-intro-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 480px) {
  .acc-auth-card-unified {
    padding: 1.75rem 1.25rem;
  }
  .acc-auth-form .form-row-2col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   STANDALONE POLICY PAGES STYLING
   ========================================================================== */
.policy-hero-section {
  background-color: var(--primary-black, #0F0F0E);
  color: #FFFFFF;
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
}

.policy-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.policy-hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.policy-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-red, #C90A0E);
  background-color: rgba(201, 10, 14, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.policy-page-section {
  padding: 3.5rem 0 5rem;
  background-color: var(--bg-alt, #FAFAFA);
  min-height: 60vh;
}

.policy-content-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border, #E5E5E5);
  border-radius: 10px;
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 20px rgba(15, 15, 14, 0.03);
}

.policy-last-updated {
  font-size: 0.875rem;
  color: var(--text-muted, #666666);
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-black, #0F0F0E);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background-color: var(--primary-red, #C90A0E);
  border-radius: 2px;
}

.policy-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-text strong {
  color: var(--primary-black, #0F0F0E);
}

.policy-list {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.policy-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.policy-highlight-box {
  background-color: #F9FAFB;
  border-left: 4px solid var(--primary-red, #C90A0E);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}

.policy-highlight-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-content-card {
    padding: 2rem 1.5rem;
  }
  .policy-hero-section {
    padding: 2.5rem 1rem 2rem;
  }
}

/* ==========================================================================
   DEDICATED BLOG DETAILS PAGE STYLES
   ========================================================================== */

.blog-details-page {
  padding: 2.5rem 0 5rem;
  background-color: #FFFFFF;
}

.blog-details-breadcrumbs {
  font-size: 0.875rem;
  color: #64748B;
  margin-bottom: 2rem;
  font-weight: 600;
}

.blog-details-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-details-breadcrumbs a:hover {
  color: var(--primary-red);
}

.blog-details-hero {
  margin-bottom: 2.25rem;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--primary-red);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.blog-back-link:hover {
  opacity: 0.85;
}

.blog-details-category {
  display: inline-block;
  background: #FFF0F1;
  color: var(--primary-red);
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.blog-details-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #0F0F0E;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.blog-details-excerpt {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 860px;
}

.blog-details-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #64748B;
  flex-wrap: wrap;
}

.blog-details-meta .meta-dot {
  color: #CBD5E1;
}

.blog-featured-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  aspect-ratio: 16 / 9;
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-details-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 3rem;
  align-items: start;
}

.blog-article-content {
  max-width: 760px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
}

.blog-article-content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0F0F0E;
  margin: 2.25rem 0 1rem 0;
  letter-spacing: -0.01em;
}

.blog-article-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F0F0E;
  margin: 1.75rem 0 0.85rem 0;
}

.blog-article-content p {
  margin-bottom: 1.35rem;
}

.blog-article-content ul, .blog-article-content ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.blog-article-content li {
  margin-bottom: 0.6rem;
  line-height: 1.65;
}

.blog-article-content strong {
  color: #0F0F0E;
}

.blog-article-content a {
  color: var(--primary-red);
  text-decoration: underline;
}

.blog-callout-box {
  background-color: #FFF5F6;
  border-left: 4px solid var(--primary-red);
  padding: 1.35rem 1.65rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}

.blog-callout-box h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0F0F0E;
  margin-bottom: 0.5rem;
}

.blog-callout-box p {
  margin: 0;
  font-size: 0.975rem;
  color: #334155;
  line-height: 1.6;
}

/* Sidebar Styling */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 100px;
}

.blog-sidebar-box {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.blog-sidebar-heading {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0F0F0E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #F1F5F9;
}

.blog-sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  border-bottom: 1px dashed #F1F5F9;
}

.blog-sidebar-info-row:last-child {
  border-bottom: none;
}

.blog-sidebar-info-row .info-label {
  color: #64748B;
  font-weight: 600;
}

.blog-sidebar-info-row .info-val {
  color: #0F0F0E;
  font-weight: 800;
}

.blog-share-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-share-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.blog-share-btn:hover {
  background-color: #FFF0F1;
  border-color: #FCA5A5;
  color: var(--primary-red);
}

/* Related Articles Section */
.related-articles-section {
  border-top: 1px solid #E2E8F0;
  padding-top: 3.5rem;
  margin-top: 4rem;
}

.related-articles-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0F0F0E;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-article-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.related-article-card:hover {
  border-color: #FCA5A5;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 10, 14, 0.08);
}

.related-card-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: #F8FAFC;
}

.related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-article-card:hover .related-card-img {
  transform: scale(1.04);
}

.related-card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 15, 14, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.related-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-meta {
  font-size: 0.775rem;
  color: #64748B;
  margin-bottom: 0.45rem;
}

.related-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0F0F0E;
  line-height: 1.35;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.related-card-link {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-red);
}

/* Fallback Card */
.blog-not-found-card {
  max-width: 600px;
  margin: 3.5rem auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.blog-not-found-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #FEF2F2;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.blog-not-found-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0F0F0E;
  margin-bottom: 0.5rem;
}

.blog-not-found-desc {
  color: #64748B;
  font-size: 0.975rem;
  margin-bottom: 2rem;
}

/* Responsive Rules for Blog Details */
@media (max-width: 1024px) {
  .blog-details-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .related-articles-grid {
    grid-template-columns: 1fr;
  }
  .blog-details-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE HERO SECTIONS AUDIT & FIXES
   ========================================================================== */

/* Checkout Page Layout Grid & Triplet Grid */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-triplet-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

/* Order Success Summary Matrix */
.order-summary-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  background: #F8FAFC;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}

/* Auth Card Formatting */
.auth-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 12px);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm, 0 4px 12px rgba(0, 0, 0, 0.03));
}

/* Media Query Adjustments for Viewports <= 1024px (Tablet) */
@media (max-width: 1024px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
  }
  .contact-hero-img {
    height: 340px;
    object-fit: cover;
  }
}

/* Media Query Adjustments for Viewports <= 860px (Tablet Small) */
@media (max-width: 860px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Media Query Adjustments for Viewports <= 640px (Mobile Standard) */
@media (max-width: 640px) {
  .split-ref-img {
    height: 240px;
    object-fit: cover;
  }

  .contact-hero-img {
    height: 240px;
    object-fit: cover;
  }

  .split-ref-feat-label-single {
    white-space: normal;
  }

  .split-ref-floating-badge {
    left: 0;
  }

  .blog-featured-img {
    max-height: 240px;
    object-fit: cover;
    border-radius: 10px;
  }

  .pdetail-main-img-box {
    height: 240px;
  }

  .pdetail-main-img {
    max-height: 220px;
    object-fit: contain;
  }
}

/* Media Query Adjustments for Viewports <= 480px (Small Mobile: 320px–480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 0.925rem;
  }

  .btn-hero-pill {
    max-width: 100%;
    padding: 0 24px;
    font-size: 0.95rem;
  }

  .split-ref-title {
    font-size: 1.65rem;
    line-height: 1.15;
  }

  .split-ref-desc {
    font-size: 0.925rem;
  }

  .checkout-triplet-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .order-summary-matrix-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .auth-form-card {
    padding: 1.5rem 1rem;
  }

  .auth-page-main {
    padding: 2rem 0 3.5rem !important;
  }

  .policy-hero-section {
    padding: 2rem 0.85rem 1.5rem;
  }

  .policy-hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .policy-hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .acc-hero-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .acc-heading {
    font-size: 1.5rem;
  }
}



