body {
  background: #f3f4f6;
  font-family: 'Poppins', sans-serif;
}

.customizer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.customizer-panel {
  padding: 30px;
  border-right: 1px solid #e0e0e0;
}

.customizer-panel h2 {
  font-weight: 600;
  margin-bottom: 25px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.input-group input[type="text"],
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s ease;
}

.input-group input[type="text"]:focus,
.input-group select:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.input-group input[type="range"] {
  width: 100%;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.color-swatches div {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: 0.2s ease;
}

.color-swatches div.active {
  border: 3px solid #000;
}

.preview-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 20px;
}
.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  padding: 10px 21px;
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.3s ease;
  margin-left: 25px;
}

.custom-file-upload:hover {
  background-color: #ddd;
}

.file-name {
  font-size: 14px;
  color: #666;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

canvas {
  border-radius: 12px;
  border: 1px solid #ccc;
  max-width: 100%;
}

.btn-checkout {
  background-color: #6c63ff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-checkout:hover {
  background-color: #584ad6;
}

section#checkout-row {
  padding: 70px 0;
}

.checkout-sec h4 span.badge {
  background-color: #fdb819;
  font-family: "Poppins";
  font-weight: 600;
  color: #000;
}
.btn.btn-products {
    background-color: #f3bd3f !important;
    color:white;
}
.btn.btn-products:hover {
    background-color: #e3a30e !important;
        transition: color .3s;
}

.banner-sec.text-center.py-4 {
    background-color: black;
    color: #F3BB2E;
}
.checkout-title{
    font-size: 3rem;
}
.image_label {
    margin-top: 10px;
}
.category-section {
  background-color: #eee;
  padding: 2rem 0;
}

.category-section .card {
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.category-section .btn-products {
  background-color: #ffc107;
  color: #fff;
  font-weight: bold;
}

.category-section .btn-products:hover {
  background-color: #e0a800;
}

.category-section .product-img {
  border-radius: 8px;
  object-fit: cover;
  max-height: 250px;
}


