/* [project]/app/(default)/products/Products.module.css [app-client] (css) */
.Products-module__tmVXCW__productsGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  display: grid;
}

.Products-module__tmVXCW__productCard {
  text-align: center;
  color: #3d2c21;
  background-color: #fefaf5;
  border-radius: 16px;
  flex-direction: column;
  padding: 1.5rem;
  font-family: sans-serif;
  display: flex;
}

.Products-module__tmVXCW__productImageContainer {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-top: 100%;
  position: relative;
}

.Products-module__tmVXCW__productImage {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Products-module__tmVXCW__productName {
  color: #3d2c21;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.Products-module__tmVXCW__productDescription {
  color: #7f7169;
  flex-grow: 1;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.Products-module__tmVXCW__productPrice {
  color: #3d2c21;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.Products-module__tmVXCW__quantitySelector {
  width: 100%;
  margin-bottom: 1rem;
}

.Products-module__tmVXCW__quantitySelector select {
  appearance: none;
  color: #3d2c21;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"%3e%3cpolyline points=\"6 9 12 15 18 9\"%3e%3c/polyline%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1em;
  border: 1px solid #e0d8d3;
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.Products-module__tmVXCW__actionButtons {
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}

.Products-module__tmVXCW__getItNowButton, .Products-module__tmVXCW__addToCartButton {
  cursor: pointer;
  border: 1px solid #3d2c21;
  border-radius: 30px;
  flex: 1;
  padding: .8rem;
  font-size: 1rem;
  font-weight: 500;
}

.Products-module__tmVXCW__getItNowButton {
  color: #fff;
  background-color: #3d2c21;
}

.Products-module__tmVXCW__addToCartButton {
  color: #3d2c21;
  background-color: #0000;
}

.Products-module__tmVXCW__pinCodeChecker {
  background-color: #fff;
  border: 1px solid #e0d8d3;
  border-radius: 8px;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.Products-module__tmVXCW__pinCodeChecker input {
  color: #3d2c21;
  border: none;
  outline: none;
  flex: 1;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.Products-module__tmVXCW__pinCodeChecker button {
  cursor: pointer;
  color: #3d2c21;
  background: none;
  border: none;
  padding: 0 1.5rem;
  font-weight: 500;
}

/* [project]/components/auth/LoginDialog.module.css [app-client] (css) */
.LoginDialog-module__xVwgia__overlay {
  z-index: 1000;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.LoginDialog-module__xVwgia__dialog {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  position: relative;
}

.LoginDialog-module__xVwgia__closeButton {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: 10px;
}

.LoginDialog-module__xVwgia__dialog h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.LoginDialog-module__xVwgia__formGroup {
  margin-bottom: 1rem;
}

.LoginDialog-module__xVwgia__formGroup label {
  margin-bottom: .5rem;
  display: block;
}

.LoginDialog-module__xVwgia__formGroup input {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: .75rem;
}

.LoginDialog-module__xVwgia__phoneInputContainer {
  display: flex;
}

.LoginDialog-module__xVwgia__phonePrefix {
  background-color: #eee;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: .75rem;
}

.LoginDialog-module__xVwgia__phoneInput {
  border-radius: 0 4px 4px 0 !important;
}

.LoginDialog-module__xVwgia__otpContainer {
  justify-content: space-between;
  gap: 10px;
  display: flex;
}

.LoginDialog-module__xVwgia__otpInput {
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.LoginDialog-module__xVwgia__button {
  color: #fff;
  cursor: pointer;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  width: 100%;
  margin-top: 1rem;
  padding: .75rem;
  font-size: 1rem;
}

.LoginDialog-module__xVwgia__button:disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

.LoginDialog-module__xVwgia__error {
  color: red;
  text-align: center;
  margin-top: 1rem;
}

/*# sourceMappingURL=_54d74228._.css.map*/