/*
Theme Name: OceanWP Child
Template: oceanwp
Version: 1.0.0
*/

/* --- CATEGORY FILTER BUTTONS --- */

/* --- PRODUCT GRID --- */
/* ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
ul.products li.product {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 24px 16px 16px 16px;
  width: 320px;
  min-width: 320px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
ul.products li.product:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 16px 0 8px 0;
  text-align: center;
}
ul.products li.product .star-rating {
  margin: 0 auto 8px auto;
  float: none;
}
ul.products li.product .price {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-align: center;
}
ul.products li.product .price del {
  color: #888;
  font-size: 1rem;
}
ul.products li.product .price ins {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}
ul.products li.product .zapcard-discount {
  color: #ff9900;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 8px;
}
ul.products li.product .button {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  margin: 8px 4px 0 4px;
  border: none;
  transition: background 0.2s;
  font-size: 1rem;
}
ul.products li.product .button:hover {
  background: #ff9900;
  color: #000;
}
ul.products li.product .zapcard-btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
ul.products li.product img {
  border-radius: 12px;
  max-width: 220px;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
} */
/* --- END PRODUCT GRID --- */

#custom-product-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    background: #fafafa;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #888;
    background: #fff;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.upload-btn {
    border: none;
    background: #e0e0e0;
    padding: 15px;
    width: 100%;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: center;
}

.upload-btn-wrapper input[type="file"] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.submit-btn {
    background: #222;
    color: #fff;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #000;
}
