@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Poppins", sans-serif;
}
html {
	scroll-behavior: smooth;
}
a {
  text-decoration: none;
  display: inline-block;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
   padding: 0;
   margin: 0;
   line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: #f63232; /* Red */
  --c2: #ffffff; /* White */
  --c3: #c1c1c1; /* Gray */
  --c4: #000000; /* Black */
  --bg: #201924;
}
::selection {
  	background: var(--c1);
	color: var(--c2);
}

/* inner-wrapper */

.inner-header {
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 190px 0px 160px 0px;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}

/* end inner-wrapper */

/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0px;
}
.head-logo a {
    width: 180px;
    display: block;
}
.head-nav nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.head-nav nav ul li a {
    color: var(--c2);
    transition: all .5s;
    position: relative;
    overflow: hidden;
	display: block;
}
.head-nav nav ul li a:hover {
    color: var(--c1);
}
.head-nav nav ul li a::before {
    position: absolute;
    content: '';
    width: 100%;
    left: -100%;
    bottom: 0;
    border: 1px solid var(--c1);
    transition: all .5s;
}
.head-nav nav ul li a:hover::before {
    left: 0;
}
.head-icons ul {
    display: flex;
    gap: 25px;
    justify-content: end;
}
.head-icons ul li a {
    color: var(--c2);
    position: relative;
    font-size: 20px;
    transition: all .5s;
}
.head-icons ul li a span {
    position: absolute;
    background-color: var(--c1);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -12px;
    right: -11px;
    transition: all .5s;
}
.head-icons ul li a:hover {
    color: var(--c1);
}
.head-icons ul li a:hover span {
    background-color: var(--c2);
}

/* MAIN BANNER */

.banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000c9;
}
.banner {
    position: relative;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-img img {
    height: 900px;
    object-fit: cover;
}
.banner-title {
    color: var(--c2);
	position: relative;
    z-index: 2;
}
.banner-title h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}
.web-btn {
    background-color: var(--c1);
    color: var(--c2);
    padding: 12px 30px;
    border-radius: 4px;
    transition: all .5s;
    background-image: linear-gradient(45deg, #f63232, #783030, #783030, #f63232);
    background-size: 300% auto;
}
.web-btn:hover {
    color: var(--c2);
    background-position: 100% 0%;
}
.banner-title p {
    margin-bottom: 25px;
    color: inherit;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.wave-divider {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
}

/* ABOUT US */

.spacing {
    padding: 80px 0px;
}
.web-title h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}
.about-content p {
    margin-bottom: 15px;
}
.web-title .sub-head, .web-title .sub-head-two {
    font-weight: 500;
    position: relative;
    padding-left: 40px;
    display: inline-block;
    margin-bottom: 10px;
	color: var(--c1);
}
.web-title .sub-head::before, .web-title .sub-head-two::before, .web-title .sub-head-two::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 30px;
    border: 1px solid var(--c1);
    transform: translateY(-50%);
}
.web-title .sub-head-two::after{
	right: -40px;
	left: unset;
}
.web-title .sub-head-two::before{
	left: -40px;
}
.web-title .sub-head-two{
	padding: 0px;
}
.about-img img {
    object-fit: cover;
	transition: all .8s;
}
.about-img {
    overflow: hidden;
}
.about-img:hover img {
    transform: scale(1.1);
}
.about-imgs-main {
    margin-right: 20px;
    position: relative;
}
.abt-two {
    position: absolute;
    top: -10px;
    right: -10px;
    border: 10px solid var(--c2);
    width: 300px;
}
.abt-one img {
    height: 500px;
}
.about-exp-box {
    position: absolute;
    left: -80px;
    background-color: var(--c1);
    padding: 30px 25px;
    text-align: center;
    color: var(--c2);
    bottom: 60px;
	border-radius: 6px;
	animation: zump 4s linear infinite;
}
.about-exp-box h2 {
    font-size: 50px;
    font-weight: 600;
}
@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* SECTION PRODUCTS */

.cust-bg{
	background-color: #f3f4f6;
}
.title-gap {
    margin-bottom: 50px;
}
.product-boxes-main ul.products {
    display: flex;
    margin-bottom: 0px;
    gap: 14px;
    flex-wrap: wrap;
}
.product-boxes-main ul.products li.product {
    margin: 0px;
    width: 24%;
}
.product-boxes-main ul.products::before, .product-boxes-main ul.products::after {
    display: none;
}
.product-box-main {
    background-color: var(--c2);
    border-radius: 6px;
    transition: all .5s;
    border: 1px solid var(--c2);
}
.woocommerce-Reviews p.stars a {
    color: #ffc61e;
    font-size: 16px;
    margin-top: 10px;
}
.product-box-main a.woocommerce-LoopProduct-link {
    padding: 20px 20px 0px 20px;
    color: var(--c4);
}
.product-box-main:hover {
    border-color: var(--c1);
}
.product-box-main .add_to_cart_button {
    margin: 5px 0px 20px 20px !important;
    background-color: var(--c1) !important;
    color: var(--c2) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 12px 15px !important;
    transition: all .5s;
}
.product-box-content h2:hover {
    color: var(--c1);
}
.product-box-content h2 {
    transition: all .5s;
}
.product-box-content span.price {
    font-size: 15px !important;
	color: inherit !important;
}
.product-box-main .add_to_cart_button:hover {
    background-color: var(--c4) !important;
}
.product-box-main a.added_to_cart {
    color: var(--c1);
    font-size: 15px;
    margin-left: 8px;
    transition: all .5s;
}
.product-box-main a.added_to_cart:hover {
    color: var(--c4);
}

/* SECTION TESTIMONIALS */

.testimonial-sec .myTesti::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    border-radius: 50px;
    border: 1px dashed var(--c1);
}
.testi-item {
    background-color: #f3f4f6;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    transition: all .5s;
    position: relative;
    margin-top: 50px;
}
.testi-author-main {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testi-author-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}
.testi-author-name h4 {
    font-size: 20px;
}
.testi-item:hover {
    border-color: var(--c1);
}
.testi-author-name span {
    font-size: 14px;
}
.testi-rating ul {
    display: flex;
    gap: 5px;
    margin: 15px 0px 10px 0px;
}
.testi-rating ul li {
    color: #e5c209;
}
.testi-item::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--c1);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -49px;
}
.testi-item::after {
    position: absolute;
    content: '';
    left: 50%;
    top: -43px;
    height: 42px;
    border: 1px dashed var(--c1);
    transform: translateX(-50%);
}
.testi-arrow-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.testi-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    font-size: 20px;
    color: var(--c1);
}
.testi-arrow:hover {
    background-color: var(--c1);
    color: var(--c2);
}

/* SECTION FAQS */

.faqs-q-main .accordion-item {
    margin-bottom: 20px;
    border: 0;
}
.faqs-q-main .accordion-item:last-child {
    margin-bottom: 0px;
}
.faqs-q-main .accordion-button::after {
    background-image: unset;
    font-family: "Font Awesome 5 Pro";
    content: "\f067";
    transform: unset !important;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 51px;
    background-color: #f6323259;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c1);
}
.faqs-q-main .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: var(--c1);
    color: var(--c2);
}
.faqs-q-main .accordion-button {
    box-shadow: unset;
    background-color: var(--c2);
    font-weight: 500;
}
.faqs-q-main .accordion-button:not(.collapsed) {
    color: var(--c1);
}
.faqs-q-main .accordion-body {
    border-top: 1px solid #80808040;
}
.faq-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.faq-list-item-icon i {
    width: 50px;
    height: 50px;
    background-color: var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
    font-size: 20px;
}
.faq-list-item-content h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.faq-list-main {
    margin-top: 50px;
}
.faq-list-item-content p {
    font-size: 15px;
}

/*SECTION CONTACT US*/

/* .contact-info-item {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all .5s;
    background-color: #f3f4f6;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c2);
    border-radius: 5px;
    margin: 0 auto 15px auto;
}
.contact-info-content {
    text-align: center;
}
.contact-info-content h5 {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 18px;
}
.contact-info-content a, .contact-info-content span {
    color: #333;
    transition: all .5s;
}
.contact-info-content a:hover {
    color: var(--c1);
}
.contact-info-item:hover {
    border-color: var(--c1);
} */
.cust-contact-sec .form-field input, .cust-contact-sec .form-field textarea {
    height: 50px;
    border-radius: 4px;
    transition: all .5s;
    border: 1px solid #80808026;
    padding: 10px 20px;
    outline: 0;
    width: 100%;
    font-size: 15px;
}
.cust-contact-sec .form-field textarea {
    height: 170px;
}
.cust-contact-sec .form-field input:focus, .cust-contact-sec .form-field textarea:focus {
    border-color: var(--c1);
}
.cust-gap {
    row-gap: 24px;
}
.cust-form-btn input {
    padding: 12px 35px;
    border: 1px solid var(--c1);
    color: var(
    --c1);
    transition: all .5s;
    background: transparent;
    font-weight: 500;
    border-radius: 50px;
}
.cust-form-btn input:hover {
    background-color: var(--c1);
    color: var(--c2);
}
.contact-info-img {
    height: 100%;
    border: 2px solid var(--c1);
    border-radius: 10px;
    padding: 20px;
}
.contact-info-img img {
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}
.contact-info-img-inner {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.contact-info-img:hover img {
    transform: scale(1.1);
}

/*FOOTER*/

.cust-foot-logo a span {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cust-foot-logo ul {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.cust-foot-logo ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c1);
    transition: all .5s;
}
.cust-foot-logo ul li a:hover {
    background-color: var(--c1);
    color: var(--c2);
}
.cust-footer-bottom {
    padding: 10px 0px;
    background-color: var(--c1);
    color: var(--c2);
}
.cust-foot-title span {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
	display: inline-block;
}
.cust-foot-item ul li a {
    margin-bottom: 8px;
    transition: all .5s;
    color: #333;
}
.cust-foot-item ul li a:hover {
    padding-left: 10px;
    color: var(--c1);
}
.cust-main-footer {
    padding: 50px 0px;
    background-color: #f3f4f6;
}
.cust-foot-contact ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
    color: var(--c1);
}
.cust-foot-contact ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.cust-foot-contact ul li a {
    transition: all .5s;
    color: #333;
}
.cust-foot-contact ul li a:hover {
    color: var(--c1);
}
.cust-foot-logo a:has(span) {
    color: #333;
}
.cust-foot-logo a:has(img) {
    width: 200px;
    margin-bottom: 10px;
}
.cust-footer-bottom .payment-img {
    width: 250px;
    background-color: var(--c2);
    padding: 0px 20px;
    border-radius: 6px;
    overflow: hidden;
    margin-left: auto;
}

/* Woocommerce Cart Page */

body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main {
    width: 100%;
    padding: 0px;
}
body.woocommerce-cart .wc-block-components-totals-wrapper {
    border-top: 1px solid var(--c3);
	padding: 15px 20px;
}
body.woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items td {
    border-top: 1px solid var(--c3) !important;  
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items {
    border: 1px solid var(--c3);
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout {
    justify-content: end;
	margin: 70px 0px 60px 0px;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items thead,
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items thead th {
	background-color: var(--c1) !important;
    visibility: visible;
    font-size: 14px;
    text-align: center;
    color: var(--c2);
    font-weight: 500;
    padding: 12px 0px;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items td.wc-block-cart-item__product {
    font-size: 16px;
}
body.woocommerce-cart .wc-block-components-product-badge {
    border-radius: 0px;
	border-color: var(--primary);
}
body.woocommerce-cart a.wc-block-components-product-name {
    color: #333;
    font-weight: 600;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid var(--c3);
    font-size: 15px;
}
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title{
	text-align: left;
	font-size: 14px;
	padding: 8px 16px;
	background-color: var(--c1);
	font-weight: 500;
	color: var(--c1);
}
body.woocommerce-cart .wc-block-components-totals-coupon a {
    text-decoration: underline;
    color: var(--c1);
}
body.woocommerce-cart .wc-block-cart__submit-container a:focus{
	outline: unset !important;
    box-shadow: unset !important;
}
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block h2 {
    background-color: var(--c1);
    color: var(--c2);
    padding: 10px 20px;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block a.wc-block-cart__submit-button {
    background-color: var(--c1);
    color: var(--c2);
    transition: all .5s;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block a.wc-block-cart__submit-button:hover {
    background-color: #000;
}
.wc-block-components-totals-coupon__button {
    background-color: var(--c1);
    border: 0;
    color: var(--c2);
    transition: all .5s !important;
}
.wc-block-components-totals-coupon__button:hover {
    background-color: #000;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-product-new.wp-block-woocommerce-product-new {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2:not(.with-empty-cart-icon).wp-block-heading.has-text-align-center {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
    margin: 50px 0px 40px 0px;
}

/* CHECKOUT CSS */

body.woocommerce-checkout button.wc-block-components-checkout-place-order-button {
    background-color: var(--c1);
    border: 0;
    color: var(--c2);
    transition: all .5s;
}
body.woocommerce-checkout button.wc-block-components-checkout-place-order-button:hover {
    background-color: #000;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button {
    color: var(--c1);
    transition: all .5s;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button:hover {
    color: #000;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 70px 0px 60px 0px;
}

/* THANK YOU PAGE CSS */

body.woocommerce-order-received .woocommerce-order {
    margin: 50px 0px;
}
.woocommerce-order-received .woocommerce-order h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce-order-overview {
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    background: #fafafa;
} 
.woocommerce-order-received .woocommerce-order a.button {
    background: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}
.woocommerce-order-received .woocommerce-order a.button:hover {
    background: #005f88;
}
.woocommerce-order-received .woocommerce-order p.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 30px;
    color: var(--c1);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

/* ANIMATED IMAGE */

.testimonial-sec {
    position: relative;
}
.animated-img {
    position: absolute;
    width: 150px;
    animation: zump 4s linear infinite;
}
.animated-img img {
    filter: grayscale(1);
}
.testimonial-sec .animated-img {
    top: -50px;
    right: 0;
}
.faqs-sec {
    position: relative;
}
.faqs-sec .animated-img {
    top: -50px;
    left: -20px;
}
.main-wrapper {
    overflow: hidden;
}

/* RESPONSIVE MENU */

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--c2);
    z-index: 9999;
    transition: all .5s;
}
.responsive-menu.active{
	left: 0;
}
.responsive-menu-main {
    height: 100%;
    padding: 30px 30px;
    position: relative;
}
.responsive-logo {
    width: 140px;
    margin-bottom: 20px;
}
.responsive-links ul li a {
    color: inherit;
    padding: 10px 0px;
    display: block;
}
.responsive-links ul li {
    border-bottom: 1px solid #8080803d;
    position: relative;	
}
.resp-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 6px 0px;
}
.responsive-icon a i {
    display: block;
}
.responsive-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}
.responsive-icon a {
    color: inherit;
    font-size: 30px;
}
.responsive-links ul li:last-child {
    border: 0;
}
body.scroll-stop {
    overflow: hidden;
}
.resp-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.resp-social ul li a i {
    display: block;
}
.resp-social ul li a {
    padding: 10px;
    color: var(--c2);
    font-size: 18px;
}
.responsive-links ul li i {
    position: absolute;
    right: 0;
    top: 13px;
}
.responsive-links ul li ul {
    padding-left: 30px;
    border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
    content: "\f068";
}

/* SINGLE PRODUCT CSS */

.single-product-data-main h1.product_title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}
.single-product-data-main p.price ins {
    text-decoration: none;
}
.woocommerce-product-details__short-description p, .woocommerce-tabs .woocommerce-Tabs-panel p {
    margin-bottom: 15px;
}
.single-product-data-main p.price {
    color: #333 !important;
    font-size: 18px !important;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}
.woocommerce-product-details__short-description ul li, .woocommerce-product-details__short-description ol li,
.woocommerce-tabs .woocommerce-Tabs-panel ul li, .woocommerce-tabs .woocommerce-Tabs-panel ol li{
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.7;
}
.woocommerce-product-details__short-description ul, .woocommerce-product-details__short-description ol,
.woocommerce-tabs .woocommerce-Tabs-panel ul, .woocommerce-tabs .woocommerce-Tabs-panel ol{
    padding-left: 20px;
    margin-bottom: 15px;
}
.woocommerce-product-details__short-description ul li span {
    display: block;
    color: gray;
    font-weight: 400;
}
.single-product-data-main table.variations td.woo-variation-items-wrapper {
    display: flex;
    gap: 10px;
}
.single-product-data-main table.variations td.woo-variation-items-wrapper a.reset_variations {
    color: red;
}
.single-product-data-main table.variations {
    margin-bottom: 0px !important;
}
.single-product-data-main form.variations_form .single_variation_wrap {
    margin-top: 30px;
}
body.single-product .woocommerce-tabs.wc-tabs-wrapper {
    box-shadow: rgb(0 0 0 / 5%) 0px 0px 20px;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 50px;
    background: white;
}
body.single-product .woocommerce-Reviews textarea {
    height: 180px !important;
}
body.single-product .woocommerce-Reviews input[type="text"], body.single-product .woocommerce-Reviews input[type="email"], body.single-product .woocommerce-Reviews textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    height: 45px;
    transition: all .4s;
    outline: 0;
}
.related.products ul.products li.product {
    margin: 0px;
    width: 24%;
}
.related.products ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
	padding: 15px;
}
.related.products ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.related.products ul.products::before, .related.products ul.products::after {
    display: none;
}
.related.products > h2, .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    margin-bottom: 25px;
    font-size: 26px;
}
.woocommerce-tabs ul.tabs li {
    padding: 0px !important;
    border: 0 !important;
    background-color: unset !important;
    margin: 0px !important;
}
.woocommerce-tabs ul.tabs li a {
    font-weight: 500 !important;
    position: relative;
    font-size: 18px;
    padding: 10px 10px !important;
}
.woocommerce-tabs ul.tabs li.active a{
	color: var(--c1) !important;
}
.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #e9eaec;
    padding: 0px !important;
}
.woocommerce-tabs ul.tabs li a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--c7);
    content: '';
    visibility: hidden;
    opacity: 0;
}
.woocommerce-tabs ul.tabs li.active a::before {
    visibility: visible;
    opacity: 1;
}
.woocommerce-product-details__short-description ul li img {
    width: 80px;
    display: inline;
    margin-left: 4px;
}
.single-product-data-main span.stock-badge {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e9eaec;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-left: 22px;
}
.single-product-data-main {
    overflow: hidden;
    margin: 70px 0px 30px 0px;
}
.single-product-data-main .quantity input.qty {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c1);
    outline: 0;
    color: var(--c1);
}
.single-product-data-main button.single_add_to_cart_button {
    background-color: var(--c1) !important;
    opacity: 1 !important;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--c1);
    transition: all .5s;
    margin-left: 10px;
    height: 50px;
}
.single-product-data-main table.variations tbody tr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.single-product-data-main table.variations tbody tr:last-child {
    margin-bottom: 0px;
}
.single-product-data-main button.single_add_to_cart_button:hover {
    background-color: #000 !important;
    border-color: #000;
}
.related.products {
    margin-bottom: 70px;
}
.woocommerce-message a.button, .woocommerce-tabs div#reviews p.form-submit input[type=submit]{
	background: unset !important;
    border: 1px solid var(--c1) !important;
    border-radius: 0px !important;
    font-weight: 500 !important;
    color: var(--c1) !important;
    padding: 15px 30px !important;
    transition: all .4s;
}
.woocommerce-message a.button:hover, .woocommerce-tabs div#reviews p.form-submit input[type=submit]:hover{
	background: var(--c1) !important;
	color: var(--c2) !important;
}
.woocommerce-message {
    border-color: var(--c1);
}
.woocommerce-message::before {
    color: var(--c1);
}
.wpcf7-response-output {
    text-align: center;
    font-size: 14px;
}