/*
 Theme Name: Woostify Child
 Theme URI: https://woostify.com/
 Description: Woostify WordPress theme example child theme.
 Author: Woostify
 Author URI: https://woostify.com/
 Template: woostify
 Version: 1.0.0
*/

/* Contact Form Styling */
.woostify-contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.woostify-contact-form:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.woostify-contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.woostify-contact-form .form-control:focus {
  border-color: #4e9cff;
  background: #fff;
  box-shadow: 0 0 8px rgba(78, 156, 255, 0.3);
  outline: none;
}

.woostify-contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.woostify-contact-form .btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(45deg, #4e9cff, #6a67ce);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woostify-contact-form .btn:hover {
  background: linear-gradient(45deg, #6a67ce, #4e9cff);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Row spacing */
.woostify-contact-form .row {
  margin-bottom: 0px;
}


/* 📱 Mobile Responsive Fixes */
@media (max-width: 767px) {
  .woostify-contact-form {
    padding: 20px 15px;   /* reduce padding */
    border-radius: 12px;  /* smaller rounded corners */
  }

  .woostify-contact-form .form-control {
    font-size: 14px;      /* slightly smaller text */
    padding: 10px 12px;   /* less padding for smaller screens */
  }

  .woostify-contact-form textarea.form-control {
    min-height: 100px;    /* shorter textarea on mobile */
  }

  .woostify-contact-form .btn {
    width: 100%;          /* full width button */
    font-size: 15px;
    padding: 12px;
    border-radius: 25px;
  }

  .woostify-contact-form .row {
    margin-bottom: 12px;  /* tighten spacing */
  }

  /* Ensure columns stack nicely */
  .woostify-contact-form .col-md-6,
  .woostify-contact-form .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =====================
   CHECKOUT BUTTON
===================== */
.page-id-10 .wc-block-cart__submit-button {
  background: linear-gradient(135deg, #c9a24d, #f5e6b0);
  color: #000;
  border-radius: 60px;
  padding: 18px;
    font-size: 16px;
    font-weight: 500;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
}

.page-id-10 .wc-block-cart__submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201,162,77,0.45);
}
/* =========================
   SIDEBAR – CART TOTALS
========================= */
.page-id-10 .wc-block-cart__sidebar {
  background: linear-gradient(180deg, #111, #1a1a1a);
  border-radius: 22px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 25px 60px rgb(0 0 0 / 5%);
}

/* Heading */
.page-id-10 .wc-block-cart__totals-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 25px;
}
.wp-block-woocommerce-cart-totals-block {
	height:322px;
}

/* Totals */
.page-id-10 .wc-block-components-totals-item__label {
  font-size: 15px;
  color: #ddd;
}

.page-id-10 .wc-block-components-totals-item__value {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
}

/* Divider */
.page-id-10 .wc-block-components-totals-footer-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  margin-top: 18px;
}
@media (max-width: 600px) {
 .page-id-10 .wc-block-cart__sidebar
 {
        padding: 30px !important;
        width: 100%;
    }
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata, .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
    display: none;
}
/* =====================================
   CHECKOUT BUTTONS – PREMIUM STYLE
===================================== */

/* Button row spacing */
.page-id-11 .wc-block-checkout__actions_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* =====================
   RETURN TO CART
===================== */
.page-id-11 .wc-block-components-checkout-return-to-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-id-11 .wc-block-components-checkout-return-to-cart-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.page-id-11 .wc-block-components-checkout-return-to-cart-button:hover {
  background: #f9f9f9;
  border-color: #c9a24d;
  color: #c9a24d;
  transform: translateX(-4px);
}

/* =====================
   PLACE ORDER – CTA
===================== */
.page-id-11 .wc-block-components-checkout-place-order-button {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  padding: 18px 42px;
  background: linear-gradient(135deg, #c9a24d, #f6e3a1);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
    box-shadow: 0 18px 40px rgb(215 206 185 / 13%);
  transition: all 0.35s ease;
}

/* Shine effect */
.page-id-11 .wc-block-components-checkout-place-order-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: translateX(-100%);
}

.page-id-11 .wc-block-components-checkout-place-order-button:hover::before {
  animation: gold-shine 0.9s ease;
}

@keyframes gold-shine {
  to {
    transform: translateX(100%);
  }
}

/* Hover */
.page-id-11 .wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-3px);
    box-shadow: 0 18px 40px rgb(215 206 185 / 13%);
}

/* Disabled state */
.page-id-11 .wc-block-components-checkout-place-order-button:disabled {
  opacity: 0.6;
  box-shadow: none;
  transform: none;
}

/* =====================
   MOBILE STACK
===================== */
@media (max-width: 768px) {
  .page-id-11 .wc-block-checkout__actions_row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .page-id-11 .wc-block-components-checkout-place-order-button,
  .page-id-11 .wc-block-components-checkout-return-to-cart-button {
    width: 100%;
    justify-content: center;
  }
}
