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



.site-footer-widget select {
	width: unset;
}

.woocommerce-store-notice, p.demo_store {
	display: none !important;
}

.wc-block-cart__submit-button {
	min-width: 200px;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: top;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: auto;
	background-color: #1346af;
    color: #ffffff;
    border-radius: 22px;
}

.wc-block-cart__submit-button:hover {
	background-color: #4973ca;
	color: white;
}

.wc-block-grid__product {
	font-size: 1em!important;
}

/*To change the font size of Product title, Price and Add to Cart button*/
a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart,
a.wp-block-button__link.add_to_cart_button, 
.wc-block-grid__product-title, 
span.sale-price {
    font-size: 16px !important;
}

div.wpcf7 { 
	padding:20px;
	margin: 0 auto;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--global-gray-500, #818a91);
    background-color: var(--global-palette9, #fff);
    color: var(--global-palette4, #373a3c);
    vertical-align: middle;
    flex-grow: 1;
    z-index: 10;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 3px;
}

.wpcf7 textarea {
	height: 150px;
}
@media (min-width: 991px) {
	div.wpcf7 {
		width: 600px;
	}
}
.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] { 
    z-index: 1;
    position: relative;
    padding: 8px 16px;
    line-height: 1.8;
    cursor: pointer;
    font-size: 18px;
    text-shadow: none;
    border-width: 0px;
    border-radius: 3px;
    border-color: var(--global-palette-btn-bg, #1768ea);
    background: var(--global-palette-btn-bg, #1768ea);
    color: var(--global-palette-btn, #ffffff);
    display: flex;
    text-align: center;
    justify-content: center;
    border-style: solid;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

div.product-description a {
	color: #e52600;
	text-decoration: underline;
}



@media (max-width: 991px) {

	.wc-block-components-radio-control__option {
		padding-left: 3.5em!important;
	}
	
	.header-layout-3 .site-tools {
		flex-direction: column;
	}
	.site-tools .widget {
		margin-bottom: 12px;
		min-width: 65px;
	}
	.site-content {
		margin: 1.5em 0;
	}
}

@media (min-width: 992px) {
	.main-navigation .primary-navigation > .menu-item > a {
		padding: 0 0 20px 0!important;
	}	
}

.th-sr-only {
	display:none;
}


/* Hero Banner Container */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
}

/* Hero Image */
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text Container */
.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 38%;
  line-height: 1.4;
}

/* Headline */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

/* Subline */
.hero-subline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

/* Button */
.hero-button {
  display: inline-block;
  background-color: #3b4ec4;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #2d3ca0;
  color: #ffffff;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-banner {
    position: relative;
  }

  .hero-banner img {
    width: 100%;
    height: auto;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    text-align: center;
    padding: 20px 15px;
    background-color: #ffffff;
  }

  .hero-heading {
    font-size: 1.4rem;
  }

  .hero-subline {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}

/* Phone */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.2rem;
  }

  .hero-subline {
    font-size: 0.8rem;
  }

  .hero-button {
    font-size: 0.85rem;
    padding: 10px 24px;
  }
}