/* shop.css - Styles for the Web Shop integrated into reviews site */

#shop-page {
  color: #fff;
}

.shop-header {
  text-align: center;
  margin-bottom: 20px;
}

.shop-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.shop-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Lists (Cities, Districts, Categories) */
.shop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInList 0.3s ease;
}

@keyframes fadeInList {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.shop-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 20px;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 3px rgba(255, 255, 255, 0.5),
    inset 0 -1px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shop-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.shop-btn:active {
  transform: translateY(1px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 2px 6px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.shop-btn::after {
  content: '›';
  font-size: 24px;
  color: #63982f;
  line-height: 1;
}

/* Products */
.product-card {
  background: rgba(20, 30, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.product-img {
  width: 100%;
  height: 480px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 600px) {
  .product-img {
    height: 420px;
    object-position: center top;
  }
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: #9aa897;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #63982f;
}

.product-price small {
  font-size: 12px;
  color: #799a6c;
}

.add-to-cart-btn {
  background: #27522c;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background: #316437;
}

/* Cart Header / Navigation Back */
.shop-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.back-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #c94a4a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  display: none;
}

/* Cart View */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.cart-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.cart-item-price {
  font-size: 13px;
  color: #a4d890;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.checkout-box {
  background: rgba(20, 30, 20, 0.9);
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
  border: 1px solid #2e5933;
}

.checkout-total {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.shop-input {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: inherit;
}

.shop-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.checkout-btn {
  width: 100%;
  background: #27522c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

/* Success Screen */
.success-screen {
  text-align: center;
  background: rgba(12, 18, 12, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  margin-top: 10px;
}

.success-icon {
  font-size: 54px;
  margin-bottom: 12px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.4));
}

.success-screen h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.success-amount-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  padding: 10px 18px;
  border-radius: 12px;
  color: #4ade80;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.crypto-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.crypto-card-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: #141f15;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

.crypto-addr-row {
  display: flex;
  gap: 8px;
}

.crypto-addr-input {
  flex: 1;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.65);
  color: #55efc4;
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  outline: none;
}

.crypto-copy-btn {
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.crypto-copy-btn:hover {
  opacity: 0.9;
}

.warning-card {
  background: rgba(231, 76, 60, 0.16);
  border: 1px solid rgba(231, 76, 60, 0.45);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.warning-card strong {
  color: #ff6b6b;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.warning-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.btn-paid {
  width: 100%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
  transition: transform 0.1s, opacity 0.2s;
}
.btn-paid:active {
  transform: scale(0.98);
}

