.bag-page {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  margin-top: 100px;
  min-height: 80vh;
}

.bag-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  color: var(--gold-accent);
}

.bag-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 100px;
}

.bag-items {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bag-item {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.bag-item img {
  width: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.item-details {
  flex: 1;
}

.item-details h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-accent);
  margin-bottom: 15px;
}

.item-details p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.price {
  font-weight: 600;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: var(--text-main);
}

.remove-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: rgba(240, 235, 216, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}

.remove-btn:hover {
  color: #ff4d4d;
  transform: scale(1.1);
}

/* Summary Box */
.bag-summary {
  flex: 1;
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 2.5rem;
  background: var(--secondary-bg);
  align-self: flex-start;
  min-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.bag-summary h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gold-accent);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: var(--text-main);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.5rem;
}

.checkout-btn {
  display: inline-block;       
  text-align: center;          
  width: 100%;
  margin-top: 2rem;
  text-decoration: none;      
}

.empty-cart-message {
  font-size: 1.4rem;
  color: var(--gold-accent);
  text-align: center;
  margin-top: 2rem;
  background: var(--secondary-bg);
  padding: 4rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}


.bag-item.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

.color-box {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .bag-container {
    flex-direction: column;
  }

  .bag-summary {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bag-item {
    flex-wrap: wrap;
  }
  .bag-item img {
    width: 100%;
  }
}

/* --- Standard Footer --- */
.fog-footer {
  background: #080c16 !important;
  padding: 30px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  margin-top: auto;
  color: #f0ebd8;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
