/**
 * Alpha Imports Theme Styles
 * CSS loaded in header - no inline styles in functions.php
 */

:root {
  --brand: #0d3f6f;
  --brand-dark: #0b355d;
  --accent: #174a78;
  --light-gray: #e8e5e5;
  --muted-text: #3a3a3a;
  --soft-bg: #ffefef;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
}
.entry-content p{font-size:15px;}

a {
  text-decoration: none;
}

.site-container {
  max-width: 1366px;
}

.text-brand {
  color: var(--brand);
}

.bg-brand {
  background-color: var(--brand);
}

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

.top-link-bar a,
.mini-link-bar a,
footer a {
  color: #5f6368;
  transition: .2s ease;
}

.top-link-bar a:hover,
.mini-link-bar a:hover,
footer a:hover {
  color: var(--brand);
}

.header-icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  background: #dc3545;
  color: #fff;
}

/*.desktop-main-nav .nav-link,
.desktop-main-nav .dropdown-toggle {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.95rem 0;
}

.desktop-main-nav .nav-link:hover,
.desktop-main-nav .dropdown-toggle:hover {
  color: rgba(255, 255, 255, .85);
}

.desktop-main-nav .nav-link.active {
  border-bottom: 2px solid rgba(255, 255, 255, .9);
  color: #e57266;
}

.mega-menu-item {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #f4f4f4;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 1050;
  border-top: 1px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}

.mega-menu-item:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.mega-menu-list li+li {
  margin-top: 0.85rem;
}

.mega-menu-list a {
  color: #4b5563;
  font-size: 0.95rem;
  transition: color .2s ease, padding-left .2s ease;
}

.mega-menu-list a:hover {
  color: var(--brand);
  padding-left: 6px;
}

.mega-promo-card {
  position: relative;
  min-height: 250px;
  border-radius: 1rem;
  overflow: hidden;
}

.mega-promo-card img {
  object-fit: cover;
  min-height: 250px;
}

.mega-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, .12));
  z-index: 1;
}

.mega-promo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #fff;
  z-index: 2;
}*/

.hero-slide {
  min-height: 420px;
  background-position: center;
  background-size: cover;
  position: relative;
}

@media (min-width: 768px) {
  .hero-slide {
    min-height: 500px;
  }
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

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

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.35;
}

.btn-light-custom {
  background: #fff;
  color: #111;
  padding: 0.9rem 1.6rem;
  border-radius: 0.4rem;
  font-weight: 500;
  border: none;
  transition: all .25s ease;
}

.btn-light-custom:hover {
  background: #d9d9d9;
  transform: translateY(-2px);
  color: #111;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  white-space: nowrap;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 600;
  margin: 0;
}

.section-title-lines {
  flex: 1;
}

.section-title-lines span {
  display: block;
  border-top: 1px solid #d2d2d2;
  height: 4px;
}

.category-sidebar {
  background: var(--accent);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.category-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(96, 165, 250, .55);
}

.category-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.category-sidebar li+li {
  margin-top: 1rem;
}

.category-sidebar a {
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  transition: .2s ease;
}

.category-sidebar a:hover {
  color: #93c5fd;
}

.sidebar-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #60a5fa;
}

.product-card,
.news-card {
  border: 1px solid #7a7a7a;
  border-radius: 0.75rem;
  transition: all .3s ease;
  height: 100%;
  background: #fff;
}

.product-card:hover,
.news-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, .12);
  transform: translateY(-4px) scale(1.015);
}

.product-card img.scale-hover,
.news-card img.scale-hover {
  transition: transform .3s ease;
}

.product-card:hover img.scale-hover,
.news-card:hover img.scale-hover {
  transform: scale(1.08);
}

.watch-banner,
.occasion-card,
.wide-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 240px;
  background-position: center;
  background-size: cover;
}

.watch-banner img,
.occasion-card img,
.wide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.watch-banner:hover img,
.occasion-card:hover img,
.wide-banner:hover img {
  transform: scale(1.05);
}

.watch-banner::before,
.occasion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.wide-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4), rgba(0, 0, 0, .72));
}

.overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  color: #fff;
}

.testimonial-card {
  background: var(--light-gray);
  border: 2px solid #bcbcbc;
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 230px;
}

.buyers-scroll {
  display: grid;
  grid-template-columns: repeat(7, minmax(220px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.buyers-scroll::-webkit-scrollbar {
  height: 8px;
}

.buyers-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 999px;
}

.promo-logo-card {
  background: var(--soft-bg);
  border: 1px solid #d2d2d2;
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  transition: .25s ease;
}

.promo-logo-card:hover {
  border-color: #0d6efd;
}

.muted-copy {
  color: var(--muted-text);
  font-size: 0.8rem;
  line-height: 1.8;
}

.info-strip {
  background: var(--light-gray);
}

.bottom-strip {
  background: #cfcfcf;
}

.footer-links li+li {
  margin-top: 0.85rem;
}

.circle-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #333;
  margin-right: 0.5rem;
}

.search-type label {
  font-size: 0.78rem;
  display: block;
  margin-bottom: 0.2rem;
}

.search-input-wrap .form-control {
  border-color: #111;
  padding-right: 3rem;
  min-height: 44px;
}

.search-icon {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: .65;
}

.mobile-nav-links .accordion-button,
.mobile-nav-links .accordion-body,
.mobile-nav-links .list-group-item {
  background: transparent;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.mobile-nav-links .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.mobile-nav-links .accordion-button::after {
  filter: brightness(0) invert(1);
}

.offcanvas.offcanvas-start {
  width: 300px;
  background: var(--brand);
}

.map-image,
.payment-image {
  max-width: 100%;
  height: auto;
}

.featured-copy h4 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2.5rem;
}

.icon-btn {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
}

.customer-meta {
  border-top: 1px solid #9b9b9b;
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(226 111 98);}
    
    
/* =============================================
   HEADER & MEGA MENU CSS - Alpha Imports
   ============================================= */
/* === Variables (include if not already in your theme) === */
:root {
  --brand: #1a3c5e;
  --brand-light: #2a5580;
  --brand-dark: #0f2740;
  --gold: #c9a84c;
  --gold-light: #dfc06e;
  --gold-dark: #a68a2e;
  --cream: #f8f6f1;
}
/* === Announcement Bar === */
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.announcement { background: var(--brand-dark); color: rgba(255,255,255,.85); overflow: hidden; white-space: nowrap; padding: 7px 0; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; }
.announcement .track { display: inline-block; animation: marquee 35s linear infinite; }
.announcement .track span { padding: 0 40px; }
.announcement .track span i { color: var(--gold); margin: 0 6px; }
/* === Header === */
.site-container { max-width: 1440px; margin: 0 auto; }
.header { background: #fff; position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s; border-bottom: 1px solid #e8e8e8; }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
/* Search */
.search-input-wrap { position: relative; }
.search-input-wrap .form-control { padding-right: 38px; border-radius: 8px; font-size: .82rem; height: 42px; border: 1px solid #ddd; }
.search-input-wrap .search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #999; font-size: .9rem; }
.search-type label { cursor: pointer; margin-right: 12px; color: #555; font-size: .8rem; }
.search-type .form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
/* Top Links */
.top-link-bar a { color: #555; font-size: .78rem; transition: color .3s; }
.top-link-bar a:hover { color: var(--brand); }
.top-link-bar span { color: #ccc; font-size: .7rem; }
/* Mini Links */
.mini-link-bar a { color: #556; font-size: .78rem; white-space: nowrap; }
.mini-link-bar a:hover { color: var(--brand); }
.mini-link-bar span { color: #ccc; font-size: .7rem; }
/* Icon Buttons (user, cart, wishlist) */
.icon-btn { color: #333; position: relative; transition: color .3s; }
.icon-btn:hover { color: var(--brand); }
.icon-btn .bi { font-size: 1.4rem; }
.header-icon-badge { position: absolute; top: -6px; right: -10px; background: var(--gold); color: #fff; font-size: .55rem; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
/* Phone Number */
.header-phone { font-size: 1.15rem; font-weight: 700; color: var(--brand); letter-spacing: .5px; }
.header-phone .bi { color: var(--brand); font-size: 1rem; }
/* === Main Nav Bar === */
.desktop-main-nav { background: #fff; border-bottom: 1px solid #e8e8e8; }
.desktop-main-nav .nav-link { color: var(--brand); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; padding: 14px 9px !important; position: relative; transition: all .3s; }
.desktop-main-nav .nav-link .bi-chevron-down { font-size: .5rem; margin-left: 4px; opacity: .7; }
.desktop-main-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width .3s; }
.desktop-main-nav .nav-link:hover { color: var(--gold); }
.desktop-main-nav .nav-link .bi-chevron-down { color: var(--brand); }
.desktop-main-nav .nav-link:hover::after { width: 80%; }
.desktop-main-nav .nav-item { position: relative; }
.desktop-main-nav .nav-item.has-mega { position: static; }
/* === Mega Menu (Full Width) === */
.mega-dropdown { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background:#ffffff; box-shadow: 0 15px 40px rgba(0,0,0,.12); border-top: 3px solid var(--brand); padding: 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 100; }
.nav-item:hover > .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-dropdown-inner { max-width: 1440px; margin: 0 auto; padding: 28px 40px 20px; }
.mega-dropdown h6 { font-size: .9rem; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
.mega-dropdown ul { list-style: none; padding: 0; margin: 0; }
.mega-dropdown ul li { margin-bottom: 2px; }
.mega-dropdown ul li a { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .88rem; color: #444; transition: all .3s; }
.mega-dropdown ul li a:hover { color: var(--brand); padding-left: 6px; }
/* Category Icon/Thumbnail in Mega Menu */
.mega-cat-icon { width:20px; height:20px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid #e0ddd6; background: #fff; }
/* Mega Menu Promo Card */
.mega-promo-card { position: relative; border-radius: 14px; overflow: hidden; height: 100%; min-height: 280px; }
.mega-promo-card img { width: 100%; height: 100%; object-fit: cover; }
.mega-promo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff; }
.mega-promo-overlay p { font-size: .65rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 4px; }
.mega-promo-overlay h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
/* View All Button */
.mega-view-all { display: inline-block; margin-top: 14px; padding: 8px 24px; font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: var(--brand); color: #fff; border: none; border-radius: 4px; transition: all .3s; cursor: pointer; }
.mega-view-all:hover { background: var(--gold); color: #fff; }
/* === Simple Dropdown (for Jewelry, Occasions, Watches) === */
.dropdown-simple { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.1); border-top: 3px solid var(--brand); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 100; padding: 12px 0; }
.nav-item:hover > .dropdown-simple { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-simple a { display: block; padding: 7px 22px; font-size: .82rem; color: #444; transition: all .3s; }
.dropdown-simple a:hover { background: var(--cream); color: var(--brand); padding-left: 28px; }
/* === Mobile Menu Offcanvas === */
.offcanvas-brand { background: var(--brand); color: #fff; }
.offcanvas-brand .btn-close { filter: invert(1); }
.offcanvas-brand .offcanvas-title { color: var(--gold); font-weight: 600; }
.mobile-nav a { display: block; padding: 10px 0; color: rgba(255,255,255,.8); font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--gold); }

 /* === ADDITIONAL INFO SECTION === */
    .addl-info-section { background: #e0ddd6; }
    .addl-info-card { background: #fff; border-radius: 12px; overflow: hidden; text-align: center; padding: 24px 18px; transition: all .4s; cursor: pointer; height: 100%; border: 1px solid #e8e4dc; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .addl-info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.1); border-color: var(--gold); }
    .addl-info-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.8rem; }
    .addl-info-card h6 { font-size: .85rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; line-height: 1.4; }
    .addl-info-card p { font-size: .72rem; color: #777; margin-bottom: 8px; line-height: 1.5; }
    .addl-info-card .highlight { font-size: 1.1rem; font-weight: 800; color: var(--brand); display: block; margin-bottom: 4px; }
    .addl-info-card .highlight-gold { color: var(--gold); font-weight: 700; }
    .addl-info-card .highlight-red { color: #c0392b; font-weight: 700; }
    .addl-info-card .highlight-green { color: #27ae60; font-weight: 700; }
    .addl-info-card .sub-text { font-size: .68rem; color: #999; display: block; margin-top: 4px; }
    .addl-info-badge { display: inline-block; padding: 4px 14px; font-size: .65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; margin-top: 8px; }
    /* === Utility === */
.section-label { font-size: .75rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.section-heading { font-size:25px; font-weight: 700; color: #1a1a1a; }
.section-line { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto; }
/* === Animations === */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
.anim { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
/* === SECTION TITLE (with double lines) === */
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.section-title-lines { display: flex; align-items: center; justify-content: center; gap: 8px; }
.section-title-lines span { display: block; width: 40px; height: 2px; background: var(--gold); }
/* === DIAMOND FANCY CARDS === */
.diamond-fancy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .diamond-fancy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .diamond-fancy-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.diamond-fancy-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; height:auto; transition: all .5s; display: block; text-decoration: none; }
.diamond-fancy-card::before { content: ''; position: absolute; inset: 0; z-index: 1; transition: all .5s; }
.diamond-fancy-card:hover::before { background: linear-gradient(135deg, rgba(27,58,92,.85) 0%, rgba(201,168,76,.6) 100%); }
.diamond-fancy-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(27,58,92,.2); }
.diamond-fancy-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.diamond-fancy-card:hover img { transform: scale(1.12); }
.diamond-fancy-card .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.diamond-fancy-card .card-overlay h6 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.diamond-fancy-card .card-overlay .fancy-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); transition: all .3s; }
.diamond-fancy-card:hover .card-overlay .fancy-cta { gap: 12px; color: #fff; }
.diamond-fancy-card .card-count { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff; font-size: .65rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; z-index: 2; letter-spacing: .5px; }
.diamond-fancy-card .card-icon { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2; }
.diamond-fancy-card .card-icon i { color: var(--gold); font-size: 1rem; }

 /* === BUYERS PICKS GRID === */
    .buyers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 991px) { .buyers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
    @media (max-width: 575px) { .buyers-grid { grid-template-columns: 1fr; gap: 14px; } }
    .buyer-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e8e8e8; transition: all .4s; height: 100%; display: flex; flex-direction: column; }
    .buyer-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
    .buyer-card-img { position: relative; width: 100%; height: 250px; overflow: hidden; }
    .buyer-card-img .img-primary { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s; position: absolute; top: 0; left: 0; z-index: 1; }
    .buyer-card-img .img-hover { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 0; }
    .buyer-card:hover .buyer-card-img .img-primary { opacity: 0; }
    .buyer-card-img .sale-badge { position: absolute; top: 14px; left: 14px; background: #b71c1c; color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; letter-spacing: .5px; z-index: 3; }
    .buyer-card-img .hover-icons { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; z-index: 3; opacity: 0; transform: translateX(10px); transition: all .35s; }
    .buyer-card:hover .buyer-card-img .hover-icons { opacity: 1; transform: translateX(0); }
    .hover-icons a { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: #333; font-size: .95rem; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: all .3s; text-decoration: none; }
    .hover-icons a:hover { background: var(--brand); color: #fff; }
    .buyer-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
    .buyer-card-name { font-size: .9rem; color: #333; line-height: 1.5; margin-bottom: 10px; min-height: 2.7em; font-weight: 500;text-align:center; }
    .buyer-card-price { margin-bottom: 14px; display: block; align-items: baseline; gap: 8px; flex-wrap: wrap;text-align:center; }
    .buyer-card-price .price-new { font-size: 1rem; font-weight: 600; color: #1a1a1a; }
    .buyer-card-price .price-old { font-size: .9rem; color: #999; text-decoration: line-through; }
    .buyer-card .btn-buy { display: block; width: 100%; background: var(--brand); color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px; border: none; border-radius: 8px; cursor: pointer; transition: all .3s; text-align: center; text-decoration: none; margin-top: auto; }
    .buyer-card .btn-buy:hover { background: #0f2740; }
    .best-sellers-label { font-size: .75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    
    /* === TESTIMONIALS (new style with avatar, stars, source logo) === */
    .review-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e8e8e8; transition: all .4s; height: 100%; display: flex; flex-direction: column; }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--gold); }
    .review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #e8e8e8; }
    .review-name { font-size: .95rem; font-weight: 700; color: #1a1a1a; margin: 0; }
    .review-date { font-size: .75rem; color: #999; margin: 0; }
    .review-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
    .review-text { font-size: .88rem; color: #555; line-height: 1.7; flex-grow: 1; }
    .review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
    .review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
    .review-source { height: 22px; opacity: .7; }
    .review-source:hover { opacity: 1; }