.bt-bar-container-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border-top: 1px solid #e0e0e0;
  z-index: 1000;
}
.bt-bar-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.bt-bar-tabs {
  font-size: 16px;
  color: #222;
  display: flex;
  gap: 10px;
  align-items: center;
}
.bt-bar-tabs a{
    text-decoration: none;
}
.bt-bar-tabs a::after{
    content: "|";
    margin-left: 10px;
}
.bt-bar-tabs a:last-child::after{
    display: none;
}
.bt-bar-buttons {
  display: flex;
  gap: 20px;
}

.bt-bar-buttons button, .bt-bar-buttons a {
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-buy {
  background: #3b82f6;
}
.bt-bar-buttons .btn-buy:hover{
	background: #2563eb;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.bt-bar-buttons .btn-cart {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  transition: all 0.2s;
}

.bt-bar-buttons .btn-cart:hover {
  background: #f9fafb;
	border-color: #6b7280;
}

/* 모바일 디자인 */
@media screen and (max-width: 768px) {
  .bt-bar-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 16.5px;
  }

  .bt-bar-tabs {
    font-size: 15.4px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8.8px;
  }

  .bt-bar-tabs a::after {
    margin-left: 8.8px;
  }

  .bt-bar-buttons {
    width: 100%;
    gap: 11px;
  }

  .bt-bar-buttons button, 
  .bt-bar-buttons a {
    padding: 11px 22px;
    font-size: 15.4px;
    flex: 1;
    text-align: center;
  }

  .bt-bar-container-wrap {
    padding: 10px;
  }
}

/* 작은 모바일 화면 */
@media screen and (max-width: 480px) {
  .bt-bar-tabs {
    font-size: 13.2px;
  }

  .bt-bar-buttons button, 
  .bt-bar-buttons a {
    padding: 8.8px 16.5px;
    font-size: 13.2px;
  }
}
