﻿/* Sayfa temel stilleri */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}



/* Arama çubuğu tıklanabilir hale geldiğinde */
.search-wrapper.active .search-input {
  display: inline-block;
}

/* Header: Logo ve Menü hizalaması */
.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Menüyü logo ile hizalamak için */
  padding: 0.1rem;
  gap: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo img {
  height: 160px;
  margin: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  line-height: 1.15;
}

.logo-wordmark-top,
.logo-wordmark-bottom {
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.5px;
}

.logo-wordmark-top { color: #4E9E58; }
.logo-wordmark-bottom { color: #16301F; }


/* Menü tasarımı */
.menu {
  display: flex;
  gap: 1.5rem; /* Menü öğeleri arasındaki boşluk */
  align-items: center;
  margin-top: -20px; /* Menü kısmını yukarı almak için negatif margin kullanıyoruz */
}

.menu a {
  text-decoration: none;
  font-weight: bold;
  color: #313131;
  font-size: 16px;
}

.menu a:hover {
  color: #139607;
}

/* ======= HAMBURGER MENÜ ======= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a3d2b;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-container { flex-wrap: nowrap; gap: 0.6rem; padding: 0.6rem 1rem; }
  .logo { order: 1; }
  .logo img { height: 56px; margin-left: 0; margin-right: 0; margin-top: 0; }
  .logo-wordmark { display: none; }
  .right-tools { order: 2; margin-left: auto; margin-right: 0; margin-top: 0; gap: 0.6rem; }
  .hamburger-btn { display: flex; order: 3; flex-shrink: 0; }
  #language-code { display: none; }
  .menu {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 8px;
  }
  .menu.open { display: flex; }
  .menu a { width: 100%; padding: 12px 4px; border-top: 1px solid rgba(0,0,0,0.08); }
}

/* Sağdaki araçlar: Bayrağı ve arama butonunu hizala */
.right-tools {
  display: flex;
  align-items: center;
  gap: 1rem; /* Bayrak ve arama kutusu arasındaki boşluk */
  justify-content: flex-start; /* Bayrak ve arama kutusunu sola hizala, ancak menüye çok yakın yap */
  margin-right: 15px; /* Menüye yakınlaştırmak için boşluk ekle */
  margin-top: -20px; /* Bayrak ve arama butonunu yukarı almak için negatif margin kullanıyoruz */
}

/* Arama çubuğu */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
  overflow: visible;
  margin-left: 0.5rem; /* Bayraktan biraz uzaklaşması için */
}

/* Arama butonunu hizalama */
.search-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 11;
  margin-left: 0.5rem; /* Arama butonunu sola kaydırmak için */
  margin-right: 0.5rem; /* Arama butonu ile kutu arasına mesafe */
}

/* Arama kutusunu sağa kaydırma ve hizalama */
.search-input {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  transform: none;
  height: 2.5rem;
  width: 240px;
  max-width: 60vw;
  border-radius: 9999px;
  background-color: rgba(219, 255, 222, 0.767);
  color: black;
  padding-left: 2.5rem;
  padding-right: 1rem;
  border: none;
  display: none;
  font-size: 0.875rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Arama kutusu açıldığında */
.search-wrapper.active .search-input {
  width: 250px; /* Daha geniş açılacak şekilde ayarlandı */
  opacity: 1;
  padding-left: 2.5rem;
  padding-right: 1rem;
}

/* Arama kutusu odaklanıldığında stil */
.search-input:focus {
  background-color: #c9ffcead;
  outline: none;
}

/* Arama butonunun hover durumunda rengi değişecek */
.search-btn:hover {
  color: #41a32db9; /* Yeni renk (örneğin yeşil) */
}

/* Dil seçenekleri */
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-left: 0.5rem; /* Bayrağı menüye daha yakınlaştırmak için */
  padding: 5px 10px 5px 5px;
  border-radius: 20px;
  border: 1.5px solid #e3e3e3;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.language-selector:hover {
  border-color: #27ae60;
  background: #f4fdf7;
}

/* Dil seçenekleri dropdown menü */
.language-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  padding: 8px;
  gap: 6px;
  z-index: 100;
}


.language-selector img {
  width: 26px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  cursor: pointer;
}

.language-dropdown img {
  width: 26px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  margin-right: 0;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.language-dropdown img:hover {
  transform: scale(1.08);
}

.language-selector span {
  font-size: 13px;
  color: #333;
  font-weight: 700;
}
  /* Header'ı sticky yapmak için */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #d4d4d442;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to right, #c6f1d5 0%, white 30%);
}

header.sticky-header.is-sticky {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
  /* Header'ınızın üst kısmında arka planda boşluk olmasını engellemek için */
  body {
    padding-top: 0px; /* Header yüksekliğine göre ayar yapılabilir */
  }
/*footer üst kısım*/
html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100vh;          /* Tüm ekranı kapsar */
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;                    /* İçeriği büyüt, footer'ı alta iter */
}

/* footer stilleri artık footer.css dosyasında */
  /*urunler tasarım*/
  .products-section {
    background-color: #ffffff;
    padding: 2rem 2rem;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .products-container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .product-sidebar {
    flex: 0 0 180px;
    width: 180px;
    min-width: 180px;
    background: #03dd5e15;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    height: fit-content;
    box-sizing: border-box;
  }
  
  .product-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
  }
  
  .category-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
    font-size: 1rem;
    color: #333;
  }
  .category-item i {
    font-size: 1rem;
    color: #27ae60;
    min-width: 18px;
  }
  .category-item:hover,
.category-item.active {
  background-color: #27ae60;
  color: #000000;
}
.category-item:hover i,
.category-item.active i {
  color: #fff;
}
.products-main {
  flex: 1;
  min-width: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.products-count {
  font-size: 0.9rem;
  color: #666;
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #444;
}

.sort-label select {
  padding: 8px 12px;
  border: 1.5px solid #dbe8de;
  border-radius: 8px;
  background: white;
  font-size: 0.88rem;
  color: #2c3e50;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.sort-label select:focus { border-color: #27ae60; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.product-card {
  position: relative;
  background-color: hsla(155, 67%, 44%, 0.089);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}

  .product-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #27ae60;
    z-index: 2;
  }
  
  
  .product-card img {
    width: 100%;
    height: auto;
    max-height: 75%;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .product-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f4fdf7, #eaf6ee);
    border: 1.5px dashed #bfe3c9;
    border-radius: 10px;
    color: #6fa382;
    margin-bottom: 1rem;
  }
  .product-photo-placeholder i { font-size: 2rem; color: #8fc9a0; }
  .product-photo-placeholder span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  
  .product-card h4 {
    font-size: 1.2rem;
    color: #2c3e50;
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .products-container {
      flex-direction: column;
    }

    .product-sidebar {
      flex: none;
      width: 100%;
      min-width: 0;
      height: auto;
      display: flex;
      flex-direction: column;
    }

    .product-sidebar h3 {
      margin-bottom: 0.6rem;
    }

    .category-list {
      display: flex;
      gap: 0.6rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 2px;
    }

    .category-item {
      white-space: nowrap;
      margin-bottom: 0;
    }
  }
  @media (max-width: 1100px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 900px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 400px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 600px) {
    .products-section {
      padding: 1.2rem 0.9rem;
    }
    .product-sidebar {
      padding: 0.9rem 0.8rem;
      border-radius: 10px;
    }
    .product-sidebar h3 {
      font-size: 1.1rem;
    }
    .category-item {
      padding: 10px 14px;
      font-size: 0.92rem;
      margin-bottom: 0;
    }
    .product-grid {
      gap: 0.7rem;
    }
    .product-card {
      padding: 0.8rem;
    }
    .product-card h4 {
      font-size: 1.05rem;
    }
    .add-to-cart-btn,
    .stok-yok-badge {
      width: calc(100% - 20px);
      margin: 6px 10px 10px;
    }
  }

  /*ÜRÜNLER DETAY*/

  .detail-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .detail-image {
    flex: 1 1 350px;
  }
  
  .detail-info {
    flex: 1 1 350px;
  }
  
  .detail-info h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  .detail-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .detail-info ul {
    list-style: disc;
    margin-left: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .back-button {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .back-button:hover {
    background-color: #219150;
  }
  
  /* Zoom ve büyüteç stili */
  .image-zoom-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
  }
  
  .image-zoom-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
    transform-origin: center center;
  }
  
  .image-zoom-wrapper img:hover {
    transform: scale(1.05);
  }
  
  .zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    padding: 5px;
    z-index: 2;
    pointer-events: none;
  }
  
  
  .zoom-icon img {
    width: 20px;
    height: 20px;
  }
  
  .detail-section {
    margin-top: 2rem;
  }
  
  .detail-section h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
  }
  
  .detail-section p,
  .detail-section ul {
    font-size: 0.95rem;
    color: #333;
  }
  
  .usage-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  .usage-images img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 6px;
  }
  .detail-image img {
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }
  .tab-section {
    margin-top: 2rem;
  }
  
  .tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .tab-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background-color: #ecf0f1;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .tab-btn.active {
    background-color: #27ae60;
    color: white;
  }
  
  .tab-content {
    border-top: 1px solid #ccc;
    padding-top: 1rem;
  }
  .yorum-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .form-row > div {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
  }
  
  .yorum-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .yorum-form input,
  .yorum-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
  }
  
  .rating {
    font-size: 1.8rem;
    color: #ccc;
    cursor: pointer;
    display: flex;
    gap: 5px;
  }
  
  .rating span.selected,
  .rating span:hover,
  .rating span.hovered {
    color: #ffc107;
  }
  
  
  .submit-button {
    width: fit-content;
    padding: 3px 18px;
    background-color: #1abc9c;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
    .review-section {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.review-section form input,
.review-section form textarea {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: #f7f9fc;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.review-section form button {
  background: #00bcd4;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.review {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.rating span {
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
}

.rating span.selected,
.rating span.hovered {
  color: #ffc107;
}

  
  
  
  
/* ===========================
   SEPET & FİYAT STİLLERİ
   =========================== */

/* Ürün kartı fiyat etiketi */
.product-price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 14px 4px;
  border-top: 1px solid #e8f5e9;
  margin-top: auto;
}
.price-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a6b34;
}
.price-unit {
  font-size: 0.72rem;
  color: #888;
  margin-top: 1px;
}

/* Sepete ekle butonu (ürün listesi) */
.add-to-cart-btn {
  width: calc(100% - 28px);
  margin: 6px 14px 12px;
  padding: 9px 0;
  background: linear-gradient(135deg, #1a6b34, #2d9e52);
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,107,52,0.3);
}

/* Stokta yok rozeti (ürün listesi) */
.stok-yok-badge {
  width: calc(100% - 28px);
  margin: 6px 14px 12px;
  padding: 9px 0;
  background: #f5f5f5;
  color: #e53935;
  border-radius: 22px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

/* Header sepet ikonu */
.cart-btn-wrapper { position: relative; }
.cart-icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  position: relative;
  padding: 4px 6px;
  transition: color 0.2s;
}
.cart-icon-btn:hover { color: #1a6b34; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e53935;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

/* ===========================
   SEPET DRAWER
   =========================== */
#cart-panel { display: contents; }
#cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 95vw;
  height: 100vh;
  background: white;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cart-panel.open #cart-overlay { opacity: 1; pointer-events: all; }
#cart-panel.open #cart-drawer { right: 0; }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 2px solid #e8f5e9;
  background: #f4fdf6;
}
.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a6b34;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #888;
}
.cart-drawer-header button:hover { color: #333; }

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.cart-empty i { font-size: 3rem; margin-bottom: 10px; display: block; }

.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #e8f5e9;
  border-radius: 10px;
  background: #fafff9;
}
.cart-item img {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-title { font-size: 0.9rem; font-weight: 700; color: #1a3d2b; }
.cart-item-unit  { font-size: 0.75rem; color: #888; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.cart-item-qty button {
  width: 26px; height: 26px;
  border: 1.5px solid #c8e6c9;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #1a6b34;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty button:hover { background: #e8f5e9; }
.cart-item-qty span { font-size: 0.9rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-remove-btn { margin-left: 4px; border-color: #ffcdd2 !important; color: #e53935 !important; }
.cart-remove-btn:hover { background: #ffebee !important; }
.cart-item-price { font-size: 0.95rem; font-weight: 700; color: #1a6b34; white-space: nowrap; }

#cart-footer {
  padding: 16px 20px;
  border-top: 2px solid #e8f5e9;
  background: #f4fdf6;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3d2b;
  margin-bottom: 14px;
}
#cart-total-price { color: #1a6b34; }
.cart-inquiry-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #1a6b34, #2d9e52);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cart-inquiry-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,52,0.3); }
.cart-note { font-size: 0.75rem; color: #aaa; text-align: center; margin: 10px 0 0; }