/* ==========================================================================
   HISAR SAKSI - PREMIUM KATALOG
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root { 
  --bg: #f5f2ed;
  --ink: #1a1a1a;
  --accent: #a39a8c; 
  --card-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

/* GRID YAPISI */
.shop-grid { 
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important; 
  gap: 40px !important;
  padding: 20px 80px 100px 80px !important;
} 

.shop-shell.panel-open .shop-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* KARTLAR */
.shop-card { 
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden; 
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--card-shadow);
  padding-bottom: 30px;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-media {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eee;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-card:hover .product-media img {
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
}

.product-info span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.product-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-info p {
  display: none !important;
}

.shop-card::after {
  content: "+ TEKNİK DETAY";
  position: absolute;
  bottom: 25px;
  left: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  opacity: 0.6;
}

/* PANEL */
.detail-panel { 
  position: fixed;
  top: 0;
  right: -500px;
  width: 480px;
  height: 100vh; 
  background: #fff;
  z-index: 2000;
  box-shadow: -20px 0 60px rgba(0,0,0,0.05);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
}

.detail-panel.active {
  right: 0;
}

.detail-content-inner {
  padding: 80px 50px;
}

.detail-header-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.detail-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.detail-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.close-detail {
  position: absolute;
  top: 40px;
  right: 40px;
  border: none;
  background: none;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.4;
}

/* TEKNİK TABLO */
.detail-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.detail-table th {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}

.detail-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #f3f3f3;
  color: #444;
}
/* STATS */
.stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 100px 80px 64px 80px !important;
  background: #f5f2ed !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.stats div {
  text-align: center !important;
  padding: 0 40px !important;
  border-right: 1px solid rgba(0,0,0,0.12) !important;
}

.stats div:last-child {
  border-right: none !important;
}

.stats strong {
  display: block !important;
  font-size: 56px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 12px !important;
}

.stats span {
  display: block !important;
  font-size: 14px !important;
  color: #706b64 !important;
  font-weight: 600 !important;
}

.stats .plus {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-block !important;
  margin-left: 2px !important;
}

.stats strong {
  display: inline-block !important;
}

/* FOOTER / İLETİŞİM ALANI */
/* FOOTER / İLETİŞİM ALANI */
.contact-luxury {
  background: #171717 !important;
  color: #fff !important;
  padding: 90px 60px 42px !important;
}

.contact-luxury-wrapper {
  max-width: 1600px !important;
  margin: 0 auto !important;
}

.contact-luxury-top {
  max-width: 900px !important;
  margin-bottom: 70px !important;
}

.contact-luxury-top .eyebrow {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: .25em !important;
  color: #777 !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.contact-luxury-top h2 {
  font-size: clamp(38px, 4.8vw, 66px) !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  color: #fff !important;
  letter-spacing: -0.055em !important;
}

.contact-luxury-bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 58px !important;
}

.contact-links-group {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.2fr 1.45fr !important;
  gap: 64px !important;
  align-items: start !important;
}

.contact-item {
  min-width: 0 !important;
}

.contact-item .label {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  color: #777 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.contact-name {
  display: block !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  color: #fff !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
}

.contact-link {
  display: inline-block !important;
  font-size: clamp(20px, 1.9vw, 30px) !important;
  line-height: 1.38 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 650 !important;
  letter-spacing: -0.04em !important;
  border-bottom: 1px solid rgba(255,255,255,.85) !important;
  padding-bottom: 10px !important;
}

.contact-luxury-footer {
  width: 100% !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 24px !important;
  color: #777 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: 600 !important;
  text-align: left !important;
  white-space: normal !important;
}

@media (max-width: 1200px) {
  .contact-links-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 48px !important;
  }
}

@media (max-width: 768px) {
  .contact-luxury {
    padding: 70px 22px 36px !important;
  }

  .contact-luxury-top {
    margin-bottom: 50px !important;
  }

  .contact-luxury-top h2 {
    font-size: 34px !important;
  }

  .contact-links-group {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .contact-link {
    font-size: 22px !important;
  }

  .contact-luxury-footer {
    flex-direction: column !important;
    gap: 6px !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 140px 40px 80px 40px !important;
  }

  .shop-shell.panel-open .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .contact-luxury {
    padding: 70px 30px;
  }

  .contact-luxury-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-luxury-footer {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 768px) {
 .shop-toolbar{
  margin-bottom:0 !important;
  padding-bottom:8px !important;
}

.shop-toolbar p{
  margin-bottom:12px !important;
}

#resultCount{
  margin-top:0 !important;
}

.shop-grid{
  padding-top:0 !important;
}
 .shop-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  padding: 20px 20px 60px 20px !important;
}

  .detail-panel {
    width: 100%;
    right: -100%;
  }

  .detail-content-inner {
    padding: 70px 28px;
  }

  .contact-luxury {
    padding: 56px 22px 34px !important;
    overflow: hidden !important;
  }

  .contact-luxury-wrapper {
    gap: 36px !important;
  }

  .contact-luxury-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 36px !important;
  }

  .contact-links-group {
    width: 100% !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .contact-link {
    font-size: 18px !important;
    line-height: 1.45 !important;
    word-break: break-word !important;
  }

  .contact-luxury-footer {
    width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
    font-size: 10px !important;
    line-height: 1.7 !important;
  }

  .contact-luxury-top h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr !important;
  }

  .product-info h3 {
    font-size: 21px;
  }
}