/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.elementor-shape[data-shape*="line-"] .elementor-shape-fill {
  fill: currentColor !important;
}


/* Global Woocommerce Typography + Layout */
.woocommerce {
  font-family: 'Oswald', sans-serif;
  color: #5a2e00;
}

.woocommerce a {
  color: #c85b0e;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: #ff9900;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.6em 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #b75c00;
}

/* === 🛒 Cart Table Styling === */
.woocommerce-cart-form .shop_table {
  background: #fff8f1;
  border: 2px solid #d9a870;
  border-radius: 15px;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #5a2e00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.woocommerce-cart-form th,
.woocommerce-cart-form td {
  padding: 1em;
  border-top: 1px solid #eee1d0;
  vertical-align: middle;
  text-align: center;
}

.woocommerce-cart-form thead th {
  background: #ffcc99;
  color: #5a2e00;
  font-weight: bold;
}

/* === 🖼️ Product Thumbnail === */
.woocommerce-cart-form .product-thumbnail img {
  border-radius: 12px;
  max-width: 75px;
  height: auto;
  border: 2px solid #ffcc99;
}

/* === ❌ Remove Button === */
.woocommerce a.remove {
  color: #b30000;
  font-size: 1.5rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.woocommerce a.remove:hover {
  color: #ff3300;
}

/* === 🔢 Quantity Input === */
.woocommerce .quantity input.qty {
  border: 2px solid #d9a870;
  border-radius: 8px;
  width: 60px;
  text-align: center;
  background: #fffaf3;
}

/* === 🧾 Coupon Section === */
.woocommerce .coupon {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 1em;
}

.woocommerce .coupon input#coupon_code {
  border: 2px solid #d9a870;
  border-radius: 20px;
  padding: 0.5em 1em;
  background: #fff8f1;
  color: #5a2e00;
  width: 150px;
}

.woocommerce .coupon .button {
  background: #ff9900;
  color: white;
  border-radius: 25px;
  padding: 0.5em 1.5em;
  transition: 0.3s;
}
.woocommerce .coupon .button:hover {
  background: #b75c00;
}

/* === 🔄 Update Cart Button === */
.woocommerce .cart input.button[name="update_cart"] {
  background: #e6b800;
  color: #fff;
  border-radius: 25px;
  padding: 0.5em 1.5em;
  margin-left: 1em;
}
.woocommerce .cart input.button[name="update_cart"]:hover {
  background: #cc9900;
}

/* === 💰 Cart Totals === */
.cart-collaterals .cart_totals {
  background: #fff7f0;
  border: 2px solid #d9a870;
  padding: 1.5em;
  border-radius: 15px;
  font-family: 'Oswald', sans-serif;
  color: #5a2e00;
}

.cart_totals h2 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.8em;
  margin-bottom: 1em;
}

/* Totals Table */
.cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.cart_totals table tr th,
.cart_totals table tr td {
  padding: 0.75em;
  border-bottom: 1px dashed #e2c08b;
  text-align: right;
}

.cart_totals table tr th {
  text-align: left;
  font-weight: normal;
}

/* === 🧭 Proceed to Checkout Button === */
.wc-proceed-to-checkout a.checkout-button {
  background-color: #ff9900;
  color: #fff;
  padding: 0.8em 2em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1em;
  transition: background 0.3s;
  text-align: center;
}
.wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #b75c00;
}

/* === 📣 Notices === */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #fff3e6;
  color: #5a2e00;
  border-left: 5px solid #ff9900;
  border-radius: 10px;
  padding: 1em 1.5em;
  margin-bottom: 1em;
}

/* ✅ Fix WooCommerce Alt Buttons (like Proceed to Checkout) */
.woocommerce .button.alt,
.woocommerce-page .button.alt,
.woocommerce a.button.alt,
.woocommerce-page a.button.alt,
.woocommerce input.button.alt,
.woocommerce-page input.button.alt {
  background-color: #ff9900 !important;
  color: white !important;
  border-radius: 30px;
  padding: 0.8em 2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  box-shadow: none;
  border: none;
}

.woocommerce .button.alt:hover,
.woocommerce-page .button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-page input.button.alt:hover {
  background-color: #b75c00 !important;
  color: white !important;
}

/* === 🧾 Checkout Form Styling === */
.woocommerce form.checkout {
  background: #fffaf3;
  border: 2px solid #d9a870;
  padding: 2em;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  color: #5a2e00;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Section Headings */
.woocommerce form.checkout h3 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.8em;
  color: #5a2e00;
  margin-bottom: 1em;
}

/* Form Fields */
.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row textarea,
.woocommerce form.checkout .form-row select {
  background: #fff7ef;
  border: 2px solid #d9a870;
  border-radius: 10px;
  padding: 0.6em 1em;
  font-size: 1rem;
  color: #5a2e00;
  width: 100%;
}

.woocommerce form.checkout .form-row label {
  font-weight: bold;
  color: #5a2e00;
}

/* State / Country Dropdowns */
.select2-container--default .select2-selection--single {
  background-color: #fff7ef;
  border: 2px solid #d9a870;
  border-radius: 10px;
  height: 40px;
  padding: 5px 10px;
  font-size: 1rem;
}

/* Optional Text */
.woocommerce form .form-row .optional {
  font-style: italic;
  color: #aa7d33;
}

/* === 💳 Order Summary Table === */
.woocommerce-checkout-review-order-table {
  background: #fff8f1;
  border: 2px solid #d9a870;
  border-radius: 15px;
  width: 100%;
  margin-top: 1.5em;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 1em;
  border-top: 1px dashed #e2c08b;
  text-align: right;
}

.woocommerce-checkout-review-order-table th {
  text-align: left;
  font-weight: normal;
  color: #5a2e00;
}

/* === 🧾 Coupon Toggle and Notice Styling === */
.woocommerce-form-coupon-toggle,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #fff3e6;
  color: #5a2e00;
  border-left: 5px solid #ff9900;
  border-radius: 10px;
  padding: 1em 1.5em;
  margin-bottom: 1em;
}

.woocommerce-form-coupon-toggle a.showcoupon {
  color: #c85b0e;
  font-weight: bold;
  text-decoration: underline;
}

/* Coupon input styling */
form.checkout_coupon {
  background: #fff8f1;
  border: 2px solid #d9a870;
  padding: 1em;
  border-radius: 10px;
}

form.checkout_coupon input[type="text"] {
  border: 2px solid #d9a870;
  border-radius: 10px;
  background: #fffaf3;
  color: #5a2e00;
}

form.checkout_coupon .button {
  background: #ff9900;
  color: white;
  border-radius: 20px;
  padding: 0.5em 1.2em;
  transition: 0.3s;
}
form.checkout_coupon .button:hover {
  background: #b75c00;
}

/* === 🟠 Payment Methods Section === */
.woocommerce-checkout-payment {
  background: #fff7f0;
  border: 2px solid #d9a870;
  border-radius: 15px;
  padding: 1.5em;
  margin-top: 2em;
}

.woocommerce-checkout-payment h3 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.5em;
  color: #5a2e00;
}

/* Payment method text */
.payment_box {
  background: #fff3e6;
  border-left: 5px solid #ff9900;
  padding: 1em;
  border-radius: 10px;
  margin-top: 1em;
}

/* === ✅ Place Order Button === */
.woocommerce .place-order .button.alt,
.woocommerce-page .place-order .button.alt,
.woocommerce #place_order,
.woocommerce-page #place_order {
  background-color: #ff9900 !important;
  color: white !important;
  border-radius: 30px;
  padding: 0.8em 2em;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin-top: 1em;
  display: block;
}

.woocommerce .place-order .button.alt:hover,
.woocommerce-page .place-order .button.alt:hover,
.woocommerce #place_order:hover,
.woocommerce-page #place_order:hover {
  background-color: #b75c00 !important;
}
