/* ===========================
   Minally Genel Stil
   =========================== */

:root {
  --color-primary: #ff6f61;
  --color-primary-dark: #e9584b;
  --color-dark: #1f2933;
  --color-muted: #6b7280;
  --color-light: #f5f5f7;
  --color-border: #e5e7eb;
  --color-bg: #ffffff;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.1);
  --transition-fast: 0.2s ease-in-out;
  --container-width: 1200px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Roboto",
    sans-serif;
  background: #f3f4f6;
  color: var(--color-dark);
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: #fee2e2;
  color: #b91c1c;
}

/* ===========================
   OpenCart genel layout
   =========================== */

#container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content,
#column-left,
#column-right {
  padding-bottom: 30px;
}

/* Alert kutuları */
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}

/* ===========================
   Header
   =========================== */

.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Top bar */

.top-bar {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.75rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.top-bar-links {
  display: flex;
  gap: 16px;
}

.top-bar-links a {
  opacity: 0.8;
}

.top-bar-links a:hover {
  opacity: 1;
}

/* Main bar */

.main-bar {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.logo span {
  color: #0f172a;
}

/* OpenCart search formunu Minally arama kutusuna çeviriyoruz */
.search-box {
  flex: 1;
  position: relative;
}

/* search.twig çıktısı: <div id="search" class="input-group"> ... */
.search-box #search .input-group {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #f9fafb;
  overflow: hidden;
}

.search-box #search input.form-control {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 9px 40px 9px 16px;
  font-size: 0.9rem;
}

.search-box #search input.form-control:focus {
  border: none;
  box-shadow: none;
  background: #fff;
}

.search-box #search button.btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
}

/* Header actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
  color: var(--color-dark);
}

/* Category nav */

.category-nav {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.category-nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  overflow-x: auto;
}

.category-nav-inner::-webkit-scrollbar {
  height: 4px;
}

.category-nav-inner::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.category-link {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
  border: none;
}

.category-link:hover,
.category-link.active {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* OpenCart menüsünü (id="menu") bu çubuğun içine uyduruyoruz */
.category-nav-inner #menu {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.category-nav-inner #menu .navbar {
  padding: 0;
}

.category-nav-inner #menu .navbar-nav {
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
}

.category-nav-inner #menu .navbar-nav > li > a {
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  font-size: 0.85rem;
  color: #374151;
  white-space: nowrap;
  text-shadow: none;
}

.category-nav-inner #menu .navbar-nav > li > a:hover,
.category-nav-inner #menu .navbar-nav > li.open > a,
.category-nav-inner #menu .navbar-nav > li.show > a {
  background: var(--color-primary);
  color: #ffffff;
  border-color: transparent;
}

/* ===========================
   Home: Hero
   =========================== */

.home-page {
  padding: 18px 0 40px;
}

.hero-section {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

/* Ana banner */

.hero-main {
  background: radial-gradient(
    circle at top left,
    #fee2e2,
    #f97316 0,
    #fb7185 45%,
    #1f2933 120%
  );
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-main h1 {
  font-size: 1.7rem;
  margin: 0 0 8px;
}

.hero-main p {
  margin: 0 0 16px;
  max-width: 420px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-tags span {
  background: rgba(15, 23, 42, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-main-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-main-visual {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 200px;
  height: 160px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.9),
    transparent 65%
  );
  opacity: 0.7;
}

/* Sağ banner alanları */

.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.hero-card p {
  font-size: 0.8rem;
  margin: 0 0 8px;
  color: var(--color-muted);
}

/* ===========================
   Home: benefit strip
   =========================== */

.benefit-strip {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.05);
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===========================
   Category grid
   =========================== */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 1.1rem;
  margin: 0;
}

.section-header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.link-more {
  font-size: 0.8rem;
  color: var(--color-primary);
}

.category-grid {
  margin-bottom: 24px;
}

.category-grid-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto 8px;
  background: #f3f4f6;
}

.category-card h3 {
  font-size: 0.85rem;
  margin: 0 0 4px;
}

.category-card span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ===========================
   Product section
   =========================== */

.product-section {
  margin-bottom: 26px;
}

.product-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.product-tabs {
  display: flex;
  gap: 8px;
}

.product-tab {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.8rem;
  background: transparent;
}

.product-tab.active {
  border-color: var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}

.product-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.product-image {
  border-radius: var(--radius-sm);
  background: #f9fafb;
  padding: 6px;
  margin-bottom: 4px;
}

.product-image .img-fluid {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 34px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-price {
  font-weight: 700;
  font-size: 0.95rem;
}

.product-old-price {
  text-decoration: line-through;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-tagline {
  font-size: 0.7rem;
  color: #16a34a;
}

/* ===========================
   Store highlight (home)
   =========================== */

.store-highlight {
  margin-bottom: 26px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.store-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-header-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.store-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
}

.store-name-mini {
  font-size: 0.85rem;
  font-weight: 600;
}

.store-badges-mini {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.store-stats-mini {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ===========================
   Newsletter (home)
   =========================== */

.newsletter {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.newsletter h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.newsletter p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  font-size: 0.85rem;
  min-width: 220px;
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  margin-top: 32px;
  background: #0b1220;
  color: #9ca3af;
  padding: 28px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 16px;
  font-size: 0.8rem;
}

.footer-title {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin-top: 16px;
  padding-top: 10px;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* ===========================
   OpenCart ekleri: breadcrumb, ürün kartı, blog, cookie
   =========================== */

/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: #e5e7eb;
  border: 0;
  display: inline-flex;
  align-items: center;
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  padding: 0 8px;
  position: relative;
  white-space: nowrap;
  font-size: 13px;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: #4b5563;
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "›";
  color: #9ca3af;
  padding-right: 8px;
}
.breadcrumb > li.breadcrumb-item:after {
  content: none;
}

/* OpenCart ürün kartı (.product-thumb) → Minally kart stiline yakın */
.product-thumb {
  border: 0;
  border-radius: 16px;
  position: relative;
  height: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-thumb .image {
  text-align: center;
  padding-top: 12px;
}
.product-thumb .image a:hover {
  opacity: 0.9;
}
.product-thumb .description {
  padding: 12px 14px 10px;
  margin-bottom: 45px;
}
.product-thumb .description h4 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--color-border);
  background-color: #f9fafb;
  color: #4b5563;
  line-height: 38px;
  text-align: center;
  font-size: 13px;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--color-border);
}

/* blog */
.blog-thumb {
  border: 0;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: #fff;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}

/* cookie bar */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #ffffff;
}

/* ===========================
   Responsive
   =========================== */

.nav-toggle {
  display: none;
}

@media (max-width: 992px) {
  .main-bar {
    flex-wrap: wrap;
  }
  .search-box {
    order: 3;
    width: 100%;
  }
  .hero-section {
    grid-template-columns: 1.5fr 1fr;
  }
  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-grid-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-main {
    min-height: 210px;
  }
  .hero-main-visual {
    display: none;
  }
  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .benefit-strip {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .category-grid-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-strip {
    grid-template-columns: 1fr;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================
   Product Page (Ürün Detayı)
   =========================== */

.product-page {
  padding-top: 16px;
  padding-bottom: 32px;
}

.product-main-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px;
  margin-bottom: 20px;
}

.product-gallery-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 10px;
}

.product-gallery-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-main-image {
  width: 100%;
  background: #fff;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-thumb-image {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

/* Sağ taraf özet */

.product-summary-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.product-meta li + li {
  margin-top: 2px;
}

.product-rating-line {
  margin-top: 4px;
  font-size: 0.8rem;
}

.product-rating-line .rating p {
  margin-bottom: 0;
}

/* Fiyat kutusu */

.product-price-box {
  margin-top: 8px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 10px 14px;
}

.product-price-box h2 {
  margin: 0;
}

.product-price-box .price-new {
  font-size: 1.3rem;
  font-weight: 700;
}

.product-price-box .price-old {
  font-size: 0.9rem;
}

.product-price-box .product-tax,
.product-price-box .product-points,
.product-price-box .product-discount-line {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Favori / Karşılaştırma */

.product-secondary-actions {
  margin-top: 10px;
}

.product-secondary-actions .btn-group .btn {
  border-radius: 999px;
}

/* Satın alma kutusu */

.product-purchase-box {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 12px 14px;
}

.product-purchase-box h3 {
  font-size: 0.95rem;
}

.product-purchase-box .input-group {
  border-radius: 999px;
  overflow: hidden;
}

.product-purchase-box .input-group-text {
  border: 0;
  background: #f9fafb;
  font-size: 0.85rem;
}

.product-purchase-box #input-quantity {
  border: 0;
}

.product-purchase-box #button-cart {
  white-space: nowrap;
}

/* Alt tablar kartı */

.product-tabs-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-top: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.product-tabs-card .nav-tabs {
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.product-tabs-card .nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding-bottom: 6px;
  font-size: 0.9rem;
}

.product-tabs-card .nav-tabs .nav-link.active {
  border-bottom-color: var(--color-primary);
  color: var(--color-primary);
}

/* Responsive ürün sayfası */

@media (max-width: 768px) {
  .product-main-card {
    padding: 14px;
  }
}


/* Ürün kartı ek stiller (liste sayfaları) */

.product-card-desc {
  font-size: 0.75rem;
  color: var(--color-muted);
  min-height: 32px;
}

.product-card-cart {
  margin-top: 6px;
}

.product-card-cart .btn {
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 6px 10px;
}

.product-tax-line {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* Ürün kartı – favori butonu + ince sepete ekle */

.product-card {
  position: relative;
}

.product-image-wrapper {
  position: relative;
}

.product-fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.product-fav-btn i {
  color: #9ca3af;
}

.product-fav-btn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.product-fav-btn:hover i {
  color: var(--color-primary);
}

/* İnce sepete ekle butonu */

.product-card-cart {
  margin-top: 8px;
}

.product-thin-cart-btn {
  width: 100%;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff;
}

.product-thin-cart-btn:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.product-tax-line {
  font-size: 0.7rem;
  color: var(--color-muted);
}