/* ==========================================================================
   Modern 2026 Style: Minimal, Clean, Premium like Apple/Nike
   Colors: Background #fff, Text #000, Elements #c2185b (dark pink)
   ========================================================================== */

:root {
  --bg: #ffffff;
  --text: #000000;
  --accent: #c2185b;
  --accent-dark: #a01549;
  --accent-darker: #7a0f38;
  --accent-light: #f8e0eb;
  --accent-ultra-light: #fdf2f6;
  --gray-light: #f5f5f7;
  --gray-mid: #86868b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(194,24,91,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--accent-dark);
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
  background: var(--gray-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5ea;
}

.top-bar a {
  color: var(--text);
}

.top-bar a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-main {
  background: var(--bg);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-main .navbar-brand img {
  max-height: 45px;
  width: auto;
}

.navbar-main .navbar-brand {
  color: var(--text) !important;
  font-weight: bold;
  padding: 0;
}

.navbar-main .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  transition: var(--transition-fast);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--accent) !important;
}

.navbar-main .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
}

.navbar-main .btn-primary:hover,
.navbar-main .btn-primary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* Search form */
.search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.search-form .form-control {
  border-radius: 50px 0 0 50px;
  border-right: none;
  flex: 1;
}

.search-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 0.5rem 1.25rem;
  margin-left: -1px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-main .navbar-collapse {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .search-form {
    order: 3;
    margin-top: 15px;
  }
  
  .user-icons {
    order: 2;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gray-light);
}

.footer h5 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text);
  transition: var(--transition-fast);
  opacity: 0.8;
}

.footer ul li a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer .search-form {
  display: flex;
  gap: 0;
}

.footer .search-form input {
  border: 1px solid #ddd;
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.footer .search-form .btn {
  background: var(--accent);
  color: #fff;
  border-radius: 0 50px 50px 0;
}

.footer .search-form .btn:hover {
  background: var(--accent-dark);
}

.footer-about {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .footer .col-md-4 {
    margin-bottom: 30px;
  }
  .footer {
    text-align: center;
  }
}

/* ==========================================================================
   Slider Section
   ========================================================================== */
.slider-section {
  overflow: hidden;
  margin-bottom: 3rem;
}

#mainSlider .carousel-inner {
  border-radius: 0;
}

#mainSlider img {
  height: 60vh;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

@media (max-width: 768px) {
  #mainSlider img {
    height: 40vh;
  }
}

.carousel-control-prev,
.carousel-control-next {
  filter: invert(1);
  opacity: 0.7;
  transition: var(--transition);
  width: 5%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators button {
  background-color: var(--accent);
  opacity: 0.5;
}

.carousel-indicators button.active {
  opacity: 1;
}

/* ==========================================================================
   Bestsellers Section
   ========================================================================== */
.bestsellers {
  background: var(--bg);
  padding: 4rem 0;
}

.bestsellers h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 2rem;
}

.product-card {
  border: none;
  background: transparent;
  text-align: center;
  transition: var(--transition);
  padding: 1rem;
  border-radius: 16px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--accent-ultra-light);
}

.product-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-light);
  padding: 20px;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.02);
}

@media (max-width: 576px) {
  .product-img {
    max-height: 250px;
  }
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Adaptive Grid */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (max-width: 992px) {
  .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   Content Section
   ========================================================================== */
.content {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
}

.content h1,
.content h2 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.content h1 {
  font-size: 2.5rem;
}

.content h2 {
  font-size: 2rem;
}

.content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

@media (max-width: 768px) {
  .content {
    font-size: 1rem;
  }
  
  .content h1 {
    font-size: 2rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content p.lead {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   General Buttons
   ========================================================================== */
.btn-primary {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--accent-dark);
  box-shadow: var(--shadow-sm);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* ==========================================================================
   Cart Page Specific
   ========================================================================== */
.cart-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--accent-light);
  border-radius: 0;
  flex-shrink: 0;
  padding: 4px;
  box-sizing: border-box;
}

.qty-input {
  max-width: 180px;
}

.cart-summary {
  background: var(--bg);
  border: 1px solid #eee;
  border-radius: 0;
  padding: 24px;
  box-shadow: none;
  top: 80px;
}

.cart-summary-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 1.25rem;
}

.cart-qty-input {
  font-weight: 700;
  font-size: 1.05rem;
}

.cart-page .btn-primary {
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.cart-empty-message {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #777;
  font-size: 1.3rem;
}

.promo-input-group .btn {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.promo-input-group .btn:hover,
.promo-input-group .btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

@media (max-width: 576px) {
  .cart-item-img {
    width: 50px;
    height: 50px;
  }
  .qty-input {
    width: 120px !important;
  }
  .qty-input input[type="number"] {
    font-size: 1rem;
    padding: 0.5rem 0.25rem;
  }
  .qty-input .btn {
    width: 35px;
  }
}

/* ==========================================================================
   Navbar Components Fixes
   ========================================================================== */
.navbar .d-flex.align-items-center {
  gap: 0.5rem;
}

.navbar-toggler {
  margin-left: 0;
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

@media (max-width: 375px) {
  #mobileCartToggle {
    padding-right: 0.25rem !important;
  }
  
  #mobileCartToggle i {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Mini Cart Positioning
   ========================================================================== */
.cart-wrapper {
  position: relative;
  display: inline-block;
}

#miniCart {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 320px;
  max-width: 90vw;
  z-index: 1050;
}

@media (min-width: 992px) {
  .cart-wrapper #miniCart {
    right: 0;
    left: auto;
  }
}

@media (max-width: 991px) {
  #miniCart {
    position: fixed;
    top: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
  }
}

.mini-cart {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: white;
  max-height: 80vh;
  overflow-y: auto;
}

/* ==========================================================================
   Mobile Cart Badge
   ========================================================================== */
#mobileCartToggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge-mobile {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #dc3545;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .cart-badge-mobile {
    top: -6px;
    right: -10px;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-accent {
  color: var(--accent);
}

.bg-accent-light {
  background: var(--accent-light);
}

.rounded-xl {
  border-radius: 16px;
}

.transition {
  transition: var(--transition);
}

/* ==========================================================================
   Flash Messages / Alerts
   ========================================================================== */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1rem 1.25rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
}

/* ==========================================================================
   Responsive Images
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Scrollbar Styling (optional)
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}


/* Warning bar */
#warningBar {
  background: #c0392b;
  color: #fff;
  font-size: 0.85rem;
  position: relative;
  text-align: center;
  padding: 1rem 3rem 1rem 1rem;
}
#warningBar strong { color: #fff; }
#warningBar button {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  padding: 0;
}
#warningBar button:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
}

.navbar-mobile-search {
  background: var(--bg);
  padding: 8px 0;
  border-top: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.product-excerpt {
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.75;
  color: #555;
  letter-spacing: 0.01em;
}

.product-price {
  font-size: 4rem;
}

#productTabsContent .tab-pane {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  border-top: none;
}

#productTabs {
  flex-wrap: nowrap;
}

@media (max-width: 576px) {
  #productTabs .nav-link {
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
  }
}

#productTabs .nav-link {
  color: var(--accent);
}

#productTabs .nav-link.active {
  color: var(--text);
}

/* Strip inline color/caret styles imported from old CMS content */
.category-description *,
.blog-content *,
.page-content *,
#description * {
    color: inherit !important;
    caret-color: auto !important;
    font-family: inherit !important;
}

#description a,
.category-description a,
.blog-content a,
.page-content a {
    color: var(--accent) !important;
    text-decoration: underline !important;
}
#description a:hover,
.category-description a:hover,
.blog-content a:hover,
.page-content a:hover {
    color: var(--accent-dark) !important;
}

/* OpenCart exported all content wrapped in video-style divs (position:relative; padding-bottom:56.25%).
   Reset padding on all description divs; restore only for video wrapper divs (those containing iframe). */
#description div {
    padding-bottom: 0 !important;
    position: static !important;
    width: auto !important;
    min-width: 0 !important;
}
#description div:has(> iframe) {
    position: relative !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    min-width: 100% !important;
}
#description div:has(> iframe) iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Reviews notice */
.review-notice {
    border-left: 3px solid var(--accent);
    background: var(--accent-ultra-light);
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Brand logos strip */
.brand-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s;
}
.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Sidebar filters */
.filter-card {
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
}
.filter-title {
    background: var(--accent-ultra-light);
    padding: 12px 18px;
    margin: 0;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-title i { transition: transform 0.2s; }
.filter-title[aria-expanded="false"] i { transform: rotate(-90deg); }
.filter-content {
    padding: 12px 18px;
}
.filter-link-item {
    padding: 5px 0;
    font-size: 0.9rem;
}
.filter-link-item.parent { font-weight: 600; }
.filter-link-item.child  { color: #555; }
.filter-link-item a {
    color: inherit;
    display: block;
    transition: color 0.15s;
}
.filter-link-item a:hover,
.filter-link-item a.active {
    color: var(--accent);
    text-decoration: underline !important;
}
.sidebar-scroll {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-light) transparent;
}
.sidebar-scroll::-webkit-scrollbar { width: 4px; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: var(--accent-light); border-radius: 2px; }

/* ==========================================================================
   Checkout / Order / Order-Failed pages
   ========================================================================== */

.checkout-page .card,
.order-page .card,
.order-failed-page .card {
    border-radius: 0 !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

/* Section card titles with accent left border */
.checkout-page .card-title {
    border-left: 3px solid var(--accent);
    padding-left: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Order page card headers */
.order-page .card-header {
    background: var(--accent-ultra-light);
    border-bottom: 1px solid var(--accent-light);
    color: var(--text);
    font-weight: 600;
}

/* Accent color for money totals */
.checkout-page .order-total-amount,
.order-page .order-total-amount,
.order-failed-page .order-total-amount {
    color: var(--accent);
}

/* Product thumbnail in order summary sidebar */
.checkout-page .order-summary-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    flex-shrink: 0;
}

/* Bonus item highlight */
.checkout-page .bonus-item {
    background: #f0faf0;
}

/* Submit / CTA buttons */
.checkout-page .btn-primary,
.order-page .btn-primary,
.order-failed-page .btn-primary {
    border-radius: 0 !important;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Generic info page title */
.page-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Contact page */
.contact-block {
    border: 1px solid #eee;
    padding: 48px 40px;
}
.contact-lead {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.contact-note {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}
.contact-thanks {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Unpacking videos page */
.video-card {
    border: 1px solid #eee !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Error page */
.error-page {
    padding: 80px 0 100px;
    text-align: center;
}
.error-code-wrap {
    margin-bottom: 24px;
    line-height: 1;
}
.error-code {
    font-size: 9rem;
    font-weight: 900;
    color: var(--accent-light);
    letter-spacing: -4px;
    display: block;
}
.error-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}
.error-message {
    color: var(--gray-mid);
    font-size: 1rem;
    margin-bottom: 0;
}
.error-support {
    color: var(--gray-mid);
    font-size: 0.9rem;
}
.error-support a {
    color: var(--accent);
}

/* Best Sellers Widget */
.best-seller-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--accent);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.best-sellers-card { margin-bottom: 0; }
.best-seller-item {
    border-bottom: 1px solid #f0f0f0;
    color: var(--text);
    transition: background 0.15s;
}
.best-seller-item:hover {
    background: var(--accent-ultra-light);
    color: var(--accent);
}
.best-seller-rank {
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}
.best-seller-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}
.best-seller-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.best-seller-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.best-seller-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 5px;
    margin-left: 4px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.best-seller-substance {
    font-size: 0.72rem;
    color: var(--gray-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pagination */
.pagination .page-link {
    color: var(--accent);
    border-color: #e0e0e0;
    border-radius: 6px !important;
    margin: 0 2px;
    min-width: 38px;
    text-align: center;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination .page-link:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent-dark);
}
.pagination .page-item.active .page-link,
.pagination li.active a,
.pagination li.active span {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e0e0e0;
}

/* REFERENCER sidebar */
.referencer-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.referencer-title {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    background: #fff;
    color: #333;
}
.referencer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    color: inherit;
}
.referencer-item:last-child { border-bottom: none; }
.referencer-item:hover { background: var(--accent-ultra-light); }
.referencer-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}
.referencer-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin-bottom: 2px;
}
.referencer-price {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}
