:root{
  --bonamed-blue:#2c4c70;
  --bonamed-blue-dark:#223956;
  --bonamed-accent:#2563eb;
  --bg-light:#f4f5f7;
  --bg-card:#ffffff;
  --text-main:#1f2933;
  --text-muted:#6b7280;
  --radius-lg:18px;
  --radius-md:12px;
  --shadow-soft:0 10px 30px rgba(15,23,42,0.12);
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background:#ffffff;
  color:var(--text-main);
  line-height:1.5;
}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
ul{list-style:none;}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 16px;
}

/* TOP BAR --------------------------------------------------- */
.topbar{
  background:var(--bonamed-blue);
  color:#e5e7eb;
  font-size:13px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 0;
  gap:12px;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:16px;
}
.topbar-left span{
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.pill{
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  font-size:12px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* HEADER ---------------------------------------------------- */
header.site-header{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:24px;
}
.logo-row{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--bonamed-blue);
}
.logo-text{
  display:flex;
  flex-direction:column;
  font-size:13px;
}
.logo-text strong{
  font-size:18px;
  letter-spacing:.02em;
}
nav.main-nav ul{
  display:flex;
  gap:22px;
  font-size:14px;
  font-weight:500;
}
nav.main-nav a{
  position:relative;
}
nav.main-nav a.active::after,
nav.main-nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:var(--bonamed-blue);
}

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.search-input{
  position:relative;
  width:210px;
}
.search-input input{
  width:100%;
  padding:8px 32px 8px 12px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  font-size:13px;
  background:#f9fafb;
}
.search-input span{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:#9ca3af;
}
.icon-button{
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  background:#ffffff;
}

/* MAIN LAYOUT ---------------------------------------------- */
.page-main{
  padding:24px 0 80px;
  background:#f9fafb;
}
.hero-layout{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:24px;
  align-items:flex-start;
}

/* CATEGORY SIDEBAR ------------------------------------------ */
.cat-sidebar{
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:16px 0;
  box-shadow:var(--shadow-soft);
}
.cat-title{
  padding:0 20px 10px;
  font-size:14px;
  font-weight:600;
  color:var(--text-muted);
}
.cat-list li a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:9px 20px;
  font-size:14px;
  color:var(--text-main);
  transition:.15s;
}
.cat-list li a span:first-child{
  display:flex;
  align-items:center;
  gap:10px;
}
.cat-list li a:hover{
  background:#f3f4ff;
  color:var(--bonamed-blue);
}

/* HERO MAIN ------------------------------------------------- */
.hero-main{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* HERO CAROUSEL --------------------------------------------- */
.carousel{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:#0b1120;
  color:#ffffff;
  box-shadow:var(--shadow-soft);
  min-height:260px;
}
.carousel-track{
  display:flex;
  transition:transform .2s ease;
}
.carousel-slide{
  min-width:100%;
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  align-items:stretch;
}
.carousel-media{
 background:url("https://images.pexels.com/photos/5327655/pexels-photo-5327655.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
  position:relative;
  overflow:hidden;
}
.carousel-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(15,23,42,.85) 0%,rgba(15,23,42,.3) 55%,rgba(15,23,42,0) 100%);
}
.carousel-copy{
  position:relative;
  z-index:1;
  padding:40px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.7);
  font-size:12px;
}
.badge span{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  background:#f97316;
  font-size:11px;
  font-weight:600;
}
.carousel-title{
  font-size:30px;
  font-weight:700;
  max-width:380px;
}
.carousel-text{
  font-size:14px;
  max-width:380px;
  color:#e5e7eb;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 26px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  background:#ffffff;
  color:var(--bonamed-blue);
  font-size:14px;
  font-weight:600;
}
.btn-primary:hover{
  background:#e5e7eb;
}

.carousel-controls{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.carousel-dots{
  position:absolute;
  left:32px;
  bottom:18px;
  display:flex;
  gap:8px;
  pointer-events:auto;
}
.carousel-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.6);
  background:transparent;
  cursor:pointer;
}
.carousel-dot.active{
  background:#ffffff;
  border-color:#ffffff;
}
.carousel-arrows{
  position:absolute;
  right:18px;
  bottom:18px;
  display:flex;
  gap:8px;
  pointer-events:auto;
}
.round-arrow{
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  background:rgba(15,23,42,.75);
  color:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.round-arrow:hover{
  background:#ffffff;
  color:var(--bonamed-blue);
}

/* HERO FEATURES --------------------------------------------- */
.hero-features{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.feature-card{
  background:#ffffff;
  border-radius:var(--radius-md);
  padding:16px 14px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  box-shadow:0 6px 18px rgba(15,23,42,0.06);
}
.icon-circle{
  width:38px;
  height:38px;
  border-radius:999px;
  background:#eff3fb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:var(--bonamed-blue);
  flex-shrink:0;
}
.feature-card h4{
  font-size:14px;
  margin-bottom:2px;
}
.feature-card p{
  font-size:12px;
  color:var(--text-muted);
}

/* SECTION GENERAL ------------------------------------------- */
.section{
  margin-top:40px;
}
.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  gap:10px;
}
.section-title{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.section-title span.label{
  display:inline-block;
  width:32px;
  height:4px;
  border-radius:999px;
  background:var(--bonamed-blue);
}
.section-title h2{
  font-size:20px;
  font-weight:600;
}
.section-arrows{
  display:flex;
  gap:8px;
}
.section-arrow{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid #d1d5db;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  cursor:pointer;
}
.section-arrow:hover{
  background:var(--bonamed-blue);
  color:#ffffff;
}

/* PRODUCT CAROUSEL ------------------------------------------ */
.products-carousel{
  overflow:hidden;
  position:relative;
}
.products-track{
  display:flex;
  gap:16px;
  transition:transform .5s ease;
}
.product-card{
  min-width:190px;
  background:#ffffff;
  border-radius:var(--radius-md);
  padding:14px;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.product-thumb{
  position:relative;
  background:#f3f4f6;
  border-radius:12px;
  padding:20px 10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-badge{
  position:absolute;
  left:12px;
  top:12px;
  padding:3px 8px;
  border-radius:999px;
  font-size:10px;
  background:#e0edff;
  color:var(--bonamed-blue);
  font-weight:600;
}
.product-title{
  font-size:14px;
  font-weight:600;
}
.product-meta{
  font-size:12px;
  color:var(--text-muted);
}

/* BRAND GRID ------------------------------------------------ */
.brand-grid{
  display:grid;
  grid-template-columns:2fr 1.6fr;
  gap:16px;
}
.brand-card{
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:18px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  align-items:center;
  gap:18px;
  box-shadow:var(--shadow-soft);
}
.brand-card.small{
  grid-template-columns:1.1fr 1fr;
  border-radius:var(--radius-md);
  padding:14px;
}
.brand-info h3{
  font-size:16px;
  margin-bottom:6px;
}
.brand-info p{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:10px;
}
.btn-link{
  font-size:12px;
  font-weight:500;
  color:var(--bonamed-blue);
}

/* LOGO STRIP ------------------------------------------------ */
.logo-strip{
  margin-top:40px;
  background:var(--bonamed-blue-dark);
  padding:18px 0;
}
.logo-strip-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  color:#e5e7eb;
  font-size:13px;
}
.logo-pill{
  padding:6px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
}

/* CONTACT SECTION ------------------------------------------- */
.contact-section{
  margin-top:60px;
  padding:40px 32px;
  background:#ffffff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:30px;
  align-items:center;
}
.contact-image{
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-form h2{
  font-size:20px;
  margin-bottom:20px;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:13px;
}
.form-group.full{
  grid-column:1/-1;
}
.form-group label{
  color:var(--text-muted);
  font-size:12px;
}
.form-group input,
.form-group textarea{
  border-radius:12px;
  border:1px solid #e5e7eb;
  padding:10px 12px;
  font-size:13px;
  background:#f9fafb;
}
.form-group textarea{
  min-height:110px;
  resize:vertical;
}
.contact-submit{
  margin-top:14px;
}
.btn-submit{
  width:160px;
  border-radius:999px;
  border:none;
  background:var(--bonamed-blue);
  color:#ffffff;
  padding:11px 0;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}
.btn-submit:hover{
  background:var(--bonamed-blue-dark);
}

/* FOOTER ---------------------------------------------------- */
footer.site-footer{
  margin-top:60px;
  background:var(--bonamed-blue);
  color:#e5e7eb;
}
.footer-top{
  padding:36px 0 26px;
  border-bottom:1px solid rgba(148,163,184,.35);
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) repeat(2,minmax(0,1fr)) minmax(0,1.3fr);
  gap:26px;
}
.footer-col h4{
  font-size:15px;
  margin-bottom:10px;
}
.footer-col p,
.footer-col li{
  font-size:13px;
  color:#e5e7eb;
}
.footer-col li+li{
  margin-top:4px;
}
.footer-social{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.footer-social a{
  width:28px;
  height:28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}
.footer-bottom{
  padding:10px 0 14px;
  font-size:12px;
  text-align:center;
  color:#cbd5f5;
}

/* RESPONSIVE ----------------------------------------------- */
@media (max-width:1024px){
  .hero-layout{
    grid-template-columns:1fr;
  }
  .cat-sidebar{
    display:none;
  }
  .brand-grid{
    grid-template-columns:1fr;
  }
  .contact-section{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .header-inner{
    flex-wrap:wrap;
  }
  nav.main-nav ul{
    display:none; /* istəyirsən burda burger menyu aça bilərik */
  }
  .hero-features{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* Kiçik məhsul kartları üçün */
.product-card--small {
  min-width: 10px;      /* kartın enini azaldır */
  padding: 10px;
}

.product-card--small .product-thumb {
  padding: 14px 8px;
}

.product-card--small .product-thumb img {
  max-height: 180px;
  width: auto;
  margin: 0 auto;
}

.product-card--small .product-title {
  font-size: 13px;
}

.product-card--small .product-meta {
  font-size: 11px;
}

/* --- Kiçik məhsul kartı --- */

.small-card {
    width: 180px;
    padding: 10px;
    text-align: center;
}

.small-card .product-thumb img {
    max-height: 150px !important;
    width: auto !important;
    margin: 0 auto;
}

.small-card .product-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

.small-card .product-subtitle {
    font-size: 12px;
    color: #777;
    min-height: 18px;
}

.small-card .product-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 12px;
    background: #2d4ef5;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
}

.small-card .product-btn:hover {
    background: #1d38c4;
}
/* ================== PRODUCT CARD OVERRIDES ================== */

/* Kartın əsas ölçüsünü bir az kiçildir */
.product-card {
  min-width: 170px;
  padding: 10px;
}

/* Yalnız kiçik kart üçün əlavə sıxlıq */
.product-card--small .product-thumb {
  padding: 12px 6px;
}

.product-card--small .product-thumb img {
  max-height: 160px !important;  /* şəkli kiçildir */
  width: auto !important;
  margin: 0 auto;
}

.product-card--small .product-title {
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.product-card--small .product-meta {
  font-size: 11px;
  color: var(--text-muted);
  min-height: 18px;
}

/* ƏTRAFLI düyməsi */
.product-card--small .product-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--bonamed-blue);
  color: #fff;
}

.product-card--small .product-btn:hover {
  background: var(--bonamed-blue-dark);
}
/* === CONTACT PAGE FIX 1:1 === */

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}

/* SOL BLOK – MAP + KARTLAR */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-cards {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.contact-card .contact-icon img {
  width: 24px;
}

/* SAĞ BLOK – FORM */
.contact-page-right {
  background: #ffffff;
  padding: 30px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
/* ====== PRODUCT PAGE ====== */

.product-page {
  background: #f9fafb;
}

.product-top-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 32px;
  align-items: flex-start;
}

/* Galereya */
.product-gallery {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.product-main-image {
  border-radius: 16px;
  background: #f3f4f6;
  padding: 24px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image img {
  max-height: 420px;
  width: auto;
}

.product-thumbs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumb-item {
  width: 70px;
  height: 90px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .7;
}

.product-thumb-item img {
  max-height: 80px;
  width: auto;
}

.product-thumb-item.active {
  border: 2px solid var(--bonamed-blue);
  opacity: 1;
}

/* Sağdakı info blok */
.product-main-info {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.badge-stock {
  background: #e0f2fe;
  color: #0369a1;
}

.badge-discount {
  background: #fee2e2;
  color: #b91c1c;
}

.product-short {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.product-attrs {
  font-size: 13px;
  margin-bottom: 18px;
}

.product-attrs div {
  margin-bottom: 4px;
}

.product-attrs span {
  font-weight: 600;
  margin-right: 4px;
}

.product-actions {
  margin-bottom: 18px;
}

.product-actions .btn-primary.filled {
  background: var(--bonamed-blue);
  color: #fff;
}

.product-actions .btn-primary.filled:hover {
  background: var(--bonamed-blue-dark);
}

/* Çatdırılma / Geri qaytarılma */
.product-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.benefit-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
}

.benefit-item p {
  margin: 2px 0 0;
  color: var(--text-muted);
}

/* Məhsul haqqında kartı */
.product-about-card {
  margin-top: 32px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.product-about-card h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.product-about-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Mavi highlight blok */
.product-highlight {
  margin-top: 40px;
  background: var(--bonamed-blue);
  border-radius: 24px;
  padding: 32px 20px;
  color: #fff;
}

.highlight-inner {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) 40px;
  align-items: center;
}

.highlight-main {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  align-items: center;
  gap: 24px;
}

.highlight-image img {
  max-height: 220px;
  width: auto;
  margin: 0 auto;
}

.highlight-text h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.highlight-text p {
  font-size: 14px;
}

.highlight-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,.4);
  color: #fff;
  cursor: pointer;
}

/* Xüsusiyyətlər cədvəli */
.product-specs {
  margin-top: 32px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.product-specs h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.specs-table {
  font-size: 13px;
}

/* Responsive */
@media (max-width:1024px){
  .product-top-layout{
    grid-template-columns: 1fr;
  }
  .product-gallery,
  .product-main-info{
    padding:18px;
  }
  .highlight-inner{
    grid-template-columns: 1fr;
    row-gap:16px;
  }
}
/* =============== HAQQIMIZDA SƏHİFƏSİ ================= */

.about-page{
  background:#f9fafb;
}

/* HERO */
.about-hero{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:32px;
  padding-top:32px;
  align-items:center;
}
.about-hero-text h1{
  font-size:28px;
  font-weight:700;
  margin-bottom:12px;
}
.about-hero-text p{
  font-size:14px;
  color:var(--text-muted);
  max-width:380px;
}
.about-hero-map img{
  max-width:100%;
}

/* 3 ikonlu blok */
.about-features{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.about-feature{
  background:#ffffff;
  border-radius:16px;
  padding:16px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}
.about-feature h4{
  font-size:14px;
  margin-bottom:2px;
}
.about-feature p{
  font-size:12px;
  color:var(--text-muted);
}

/* Kredit bölməsi */
.about-credit-section{
  margin-top:40px;
  background:var(--bonamed-blue);
  color:#fff;
  padding:40px 0;
}
.about-credit-inner{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1.2fr);
  gap:26px;
  align-items:center;
}
.about-credit-image img{
  border-radius:18px;
  width:100%;
  object-fit:cover;
}
.about-credit-content h2{
  font-size:18px;
  margin-bottom:12px;
}
.about-credit-content ul{
  font-size:13px;
  padding-left:18px;
}
.about-credit-content li{
  margin-bottom:4px;
}

/* Sizi peşəkar edirik */
.about-professional{
  padding:40px 0;
  background:#fff;
}
.about-prof-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:32px;
  align-items:center;
}
.about-prof-text h2{
  font-size:22px;
  margin-bottom:10px;
}
.about-prof-text p{
  font-size:14px;
  color:var(--text-muted);
  max-width:420px;
}
.about-prof-image-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.about-prof-image-card img{
  width:100%;
  display:block;
}

/* Təmir blok */
.about-repair{
  padding:40px 0;
}
.about-repair-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:30px;
  align-items:center;
}
.about-repair-text h2{
  font-size:22px;
  margin-bottom:10px;
}
.about-repair-text p{
  font-size:14px;
  color:var(--text-muted);
}
.about-repair-card{
  background:#fff;
  border-radius:18px;
  padding:16px 18px 20px;
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:32px minmax(0,1fr) 32px;
  align-items:center;
  gap:10px;
}
.about-repair-image img{
  border-radius:14px;
  width:100%;
}
.about-repair-caption{
  margin-top:10px;
  font-size:13px;
  text-align:center;
}
.round-arrow.small{
  width:30px;
  height:30px;
  font-size:16px;
}

/* Rəhbərlik */
.about-team{
  padding:40px 0 10px;
}
.about-team-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.team-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  text-align:center;
  padding-bottom:12px;
}
.team-photo img{
  width:100%;
  display:block;
}
.team-info h4{
  font-size:14px;
  margin-top:8px;
}
.team-info p{
  font-size:12px;
  color:var(--text-muted);
}

/* FAQ */
.about-faq{
  padding:40px 0 60px;
}
.about-faq h2{
  font-size:22px;
  margin-bottom:18px;
}
.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq-item{
  background:#fff;
  border-radius:14px;
  box-shadow:0 4px 10px rgba(15,23,42,.06);
  overflow:hidden;
}
.faq-question{
  width:100%;
  border:none;
  background:#fff;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}
.faq-question span{
  font-weight:600;
  font-size:13px;
}
.faq-question p{
  flex:1;
  text-align:left;
  font-size:14px;
}
.faq-question i{
  font-size:18px;
  color:var(--text-muted);
}
.faq-answer{
  display:none; /* istəsən JS ilə açıb-bağlayarıq */
  padding:0 16px 14px;
  font-size:13px;
  color:var(--text-muted);
}

/* responsive */
@media (max-width:1024px){
  .about-hero,
  .about-credit-inner,
  .about-prof-layout,
  .about-repair-layout,
  .about-team-grid{
    grid-template-columns:1fr;
  }
  .about-team-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:640px){
  .about-features{
    grid-template-columns:1fr;
  }
  .about-team-grid{
    grid-template-columns:1fr;
  }
}
/* İkonlar üçün başlanğıc görünürlük */
.fab, .fas {
  font-size: 24px; /* İkon ölçüsünü artırır */
  color: #0b2c75; /* İkonların başlanğıc rəngi ağ */
  margin-right: 10px; /* İkonlar arasında boşluq */
  visibility: visible; /* İkonların görünürlüğünü təmin edirik */
  opacity: 1; /* İkonların tam görünməsini təmin edir */
}

/* Üzərinə gəldikdə rəngin mavi olmasını təmin edirik */
.fab:hover, .fas:hover {
  color: #800000; /* Hover zamanı mavi rəng */
  cursor: pointer; /* Hover zamanı kursoru pointer edirik */
}

/* İkonlar arasındakı boşluq */
.contact-info a {
  display: flex;
  align-items: center; /* İkonu mətni ilə mərkəzləşdirir */
  margin-bottom: 10px; /* Linklər arasında boşluq */
  font-size: 16px; /* Mətni kiçildir */
  color: #ffffff; /* Mətnin rəngini ağ edir */
  text-decoration: none; /* Alt xəttini silir */
}
/*cercive*/
.contact-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    max-width: 500px;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2563eb;
    text-align: center;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #6b7280;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #2563eb;
    transition: all 0.2s ease;
}

.contact-item i {
    font-size: 20px;
    color: #2563eb;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item:hover {
    transform: translateX(5px);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* ========================================================== */
/* BONAMED - FİGMA DİZAYNINA UYĞUN ƏSAS CSS DÜZƏLİŞİ (Ver. 3) */
/* ========================================================== */

/* A. YUXARI BLOKUN ƏSAS DÜZÜLÜŞÜ (Flexbox) */
.product-top-layout {
    display: flex;
    gap: 30px; 
    margin-bottom: 50px;
    align-items: flex-start;
}

/* B. SOL TƏRƏF: QALEREYA BLOKU */
.product-gallery-block {
    flex: 0 0 550px; /* Qalereya üçün sabit genişlik */
    max-width: 550px; 
    display: flex; /* Kiçik və böyük şəkilləri yanaşı qoymaq üçün */
    gap: 15px; 
    align-items: flex-start;
}

/* 1. KÖRÜKLƏYİCİLƏR (Thumbnails - Soldakı kiçik şəkillər sütunu) */
.gallery-thumbs {
    flex: 0 0 80px; /* Kiçik şəkillərin eni */
    display: flex;
    flex-direction: column; 
    gap: 10px;
}
.gallery-thumbs img {
    width: 100%;
    height: 80px; 
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
.gallery-thumbs a img { /* Əgər DLE XField-i linklər içində şəkilləri çıxarırsa */
    width: 100%;
    height: 80px; 
    object-fit: cover;
}


/* 2. ƏSAS BÖYÜK ŞƏKİL */
.product-image-main {
    flex: 1; 
}
.product-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* C. SAĞ TƏRƏF: MƏHSUL MƏLUMATLARI VƏ MÜRACİƏT ET */
.product-main-info {
    flex: 1; 
}

/* MÜRACİƏT ET KARTI (Figma-dakı Aksiyon Kartı) */
.product-actions-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff; 
}

/* MÜRACİƏT ET DÜYMƏSİ */
.btn-primary.filled {
    background-color: #007bff; /* Figma-dakı göy rəng */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: block; 
    text-align: center;
    font-weight: 600;
}

/* ÇATDIRILMA VƏ QAYTARILMA */
.product-shipping-info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}
.benefit-item {
    flex: 1;
    text-align: center;
}
.benefit-item strong {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    color: #333;
}
.benefit-item p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

/* ========================================================== */
/* Bütün bu addımları yerinə yetirdikdən sonra, səhifəni yeniləyin və nəticəni yoxlayın. */
/* ========================================================== */
