/* body {
  background: red;
} */
.form-group {
  width: 100%;
  margin-bottom: 24px;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  background: #fff !important;
  border: 1px solid #b3b3b3 !important;
  height: 50px!important;
}
select {
     -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none!important;
  border-radius: 12px !important;
}
input::placeholder,
textarea::placeholder,
select option {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
textarea {
  min-height: 100px;
  resize: vertical;
}

.hom-products-grid{
	display:flex;
	gap:32px;
}
@media (max-width:768px) {
	.hom-products-grid{
		width: max-content;
		gap:16px;
		padding:0 16px;
	}
}

/* similar-product-shop-grid */
.similar-product-shop-grid{
   display: grid;
	grid-template-columns:repeat(4, 1fr);
  gap: 32px;
}
.similar-product-shop-grid .product-card{
		max-width:100%
	}
@media (max-width:500px) {
	.similar-product-shop-grid{
		grid-template-columns:1fr;
		  gap: 18px;
	}
}
@media (min-width:500px) and (max-width:767px) {
	.similar-product-shop-grid{
	grid-template-columns:repeat(2, 1fr);
		  gap: 20px;
		}
}
@media (min-width:767px) and (max-width:992px) {
	.similar-product-shop-grid{
		padding:0 16px;
	grid-template-columns:repeat(3, 1fr);
		  gap: 20px;
		}
}


.why-client-cards {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.why-client-cards:hover {
  transform: translateY(-8px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 6px 10px rgba(0, 0, 0, 0.10),
    0 0 12px rgba(100, 150, 255, 0.3); /* soft glow */
}

@media (max-width:768px) {
.home-shop-product-card-wrapper .product-card {
		 width: 300px!important;
	}
}


.wc-saved-payment-methods{
    padding-left: 0!important;
    
}
.wc-saved-payment-methods label{
    display: inline!important;
}
#wc-stripe-payment-token-1, #wc-stripe-payment-token-new{
    width: auto!important;
}




