/*
Theme Name: Beyondlift
Theme URI: https://beyondlift.com/
Author: Lovely Hernandez
Author URI: https://beyondlift.com/
Description: A modern classic WordPress theme built for flexibility, clean design, and full developer control.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beyondlift-custom-theme
Tags: custom-menu, featured-images, responsive-layout, blog, one-column, two-columns

*/

/* =Reset
-------------------------------------------------------------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* =Base Typography
-------------------------------------------------------------- */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

a, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #005177;
}
.page-content h3,
.page-content h2,
.page-content h4,
.page-content p,
.page-content li{
    margin:0 0 20px;
    line-height:1.3
}

/**sticky top**/
.sticky div#front-banner{
    margin-top: 50px;
}
.sticky div#content-full {
    margin-top: 50px;
}

/**welcome banner***/
#welcome-banner {
    position: fixed;
    top: 90px;
    left: 0;
    background: #f4f4f4;
    padding: 22px;
    width: 100%;
    max-width: 480px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 9999;
    display: none;
    border: 1px solid #ccc;
    font-size: 25px;
}
#welcome-banner img{
  max-width:100%;
}
#welcome-banner .close {
    position: absolute;
    top: -7px;
    right: -10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    background: #b2b2b2;
    z-index: 99;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    color: #000000;
    line-height: 26px;
}
div#welcome-banner img {
    display: block;
    margin: 0 auto 15px;
}

#welcome-banner  a.btn {
    display: block;
    background: #333;
    margin: 10px 0;
    color: #fff!important;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 1.5px;
    border:1px solid #333;
}
#welcome-banner a.btn:hover{
    background:#fff;
    color:#333!important
}
/* =Layout
-------------------------------------------------------------- */
#content-sidebar {
	display: flex;
	flex-wrap: wrap;
	margin: 2rem auto;
	max-width: 1200px;
	padding: 0 1rem;
}
#content {
	flex: 1;
	min-width: 0;
}
#sidebar {
	width: 300px;
	margin-left: 2rem;
}
div#content-full {
    padding: 3.5%;
}
.page-template-default .page-content ul {
    padding: 0;
    margin: 20px;
}
.page-template-default  .page-content ul li{
    margin:5px 0;
    padding:0;
}
/* =Header
-------------------------------------------------------------- */

#header {
	background-color: #fff;
	padding: .5rem 2rem;
	border-bottom: 1px solid #ddd;
	display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top:0;
    z-index:999;
    width:100%;
    transition:all .1s ease;
}
.sticky #header{
    position:fixed;
    transition:all .1s ease;
}
.site-name img {
    margin: 0 auto;
    display: block;
    filter: grayscale(1);
    max-height: 70px;
}
div#static-note {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    clear: both;
    overflow:hidden;
    display: block;
    position: relative;
    top: 0;
    width: 100%;
}
#scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}
div#scroll-text {
    display: flex;
    align-items: center;
    column-count: 2;
    justify-content: space-between;
}

.header-icons {
    display: flex;
    align-items: start;
}

.search-form-container {
    position: fixed;
    width: 100%;
    background: #ffff;
    bottom: -50px;
    top:0;
    left: 0;
    padding: 80px 20px;
    height: 150px;
    box-sizing:border-box;
    border-bottom:1px solid #ccc;
    display:none;
}
.search-form-container input{
    width:100%;
    border:1px solid #ccc;
    padding:10px;
}
.search-form-container input#searchsubmit{
    display:none;
}
.header-icon.search-toggle-wrapper button {
    background: none;
    border: none;
    display: block;
}
.header-icons .dashicons{
    color:#333;
    margin:0 5px;
    font-size:22px;
    
}

/* --- Header Navigation Styles --- */

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  position: relative;
  z-index: 999;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}
.navigation a:after {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    transition:all .2s ease;
    background:#333;
}
.navigation a:hover:after{
    width:100%;
    transition:all .2s ease;
}

.navigation {
	margin-top: 0rem;
}
.navigation ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	gap: 1rem;
}
.navigation li {
	display: inline-block;
}
.navigation a {
    color: #333;
    font-weight: bold;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    display: block;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =HP
-------------------------------------------------------------- */
div#front-banner {
    height: 70vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: url(https://beyondliftph.com/wp-content/themes/beyondlift/images/hero-banner.jpg) top center no-repeat;
    width: 100%;
    background-size:  contain;
    background-position: center;
    background-attachment: fixed;
}
div#front-banner:before{
    position:absolute;
    background:#0000006e;
    content:'';
    display:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
div#front-banner h1{
    color:#fff;
    letter-spacing:3px;
    font-size: 6em;
}
div#front-banner .header-text{
    position:absolute;
    bottom:50px;
    left:0;
    width:100%;
    margin:auto;
    text-align:center;
}
a.shop-now {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 10px 45px;
    text-transform: uppercase;
    position:relative;
    top:0;
    transition: all .2s ease
}
a.shop-now:hover{
    background:#212121;
    color:#fff;
    top:-10px;
}

div#display-products {
    padding: 3.5%;
}
.product-card {
    max-width: 290px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 25px;
}
div#display-products h2{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:1rem;
    margin:0 0 20px
}
.product-grid .product-card .product-display {
    position: relative;
    max-width: 290px;
    overflow: hidden;
    height: 450px;
    margin: 0;
    width: 100%;
    text-align: center;
    background: #fcfcfc;
}
.product-grid .product-card .product-display:hover img.primary-image{
    opacity:0;
}
.product-grid .product-card .product-display img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.product-grid .product-card .product-display img.hover-image{
    position:absolute;
    left:0;
    right:0;
    opacity: 0;
    top:0;
}
.product-grid .product-card .product-display:hover img.hover-image{
	opacity:1;
}
h3.product-title {
    font-size:12px;
}
div#display-products span.price {
    color:#999;
    font-size: 12px;
}
div#display-products .product-grid {
    display: block;
    align-items: start;
    column-gap: 50px;
}
div#display-products h3.product-title a{
    color:#333
}

div#customer-feedback {
    background: #e9e9e9;
    padding: 3.5%;
    margin: 3.5% auto;
}
div#customer-feedback h2 {
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin: 0 0 30px;
}
div#customer-feedback h2 small {
    display: block;
    text-transform: none;
    letter-spacing: 0;
}
.feedback-item {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}
.splide__arrow{
    background:#000;
    opacity:1;
}
.splide__arrow svg{
    fill:#fff
}
h3.feedback-title span{
    color:#ffcf00;
}
.splide__pagination {
    bottom: -30px;
}
h3.feedback-title {
    line-height: 1.2em;
    margin: 20px 0 40px;
}
.product_meta {
    display: none;
}
div#free-shipping {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background:#f4f4f4;
    padding:10px 15px;
    font-size:14px;
    font-weight: 700;
}
div#free-shipping img{
    max-width: 40px;
}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding: 0;
    margin: 20px 0;
}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li{
    margin:0;
    padding:10px;
}

.woocommerce-order img {
    margin: 20px auto;
    max-width: 300px;
}
.woocommerce div.product form.cart .button {
    width: 72%;
    height: 44px;
}
.woocommerce div.product .quantity {
    width: 22%;
}
.woocommerce div.product .quantity input {
    width: 100% ! Important;
    height: 43px;
    border: none;
    background: none;
}
table.variations {
    margin-bottom: 0!important;
}
.quantity {
  display: inline-flex;
  align-items: center;
}

.quantity input.qty {
  width: 60px;
  text-align: center;
  border: 1px solid #333;
  height: 40px;
}

.quantity button.qty-minus,
.quantity button.qty-plus {
  background: none;
  width: 20px;
  height: 40px;
  cursor: pointer;
  border: none;
  font-size: 15px;
  margin:0 8px;
  line-height: 1;
}
.quantity.buttons-added {
    border-radius: 19px;
}

button.qty-minus {
    border-radius: 30px 0 0 30px;
    position:relative;
}

button.qty-plus {
    border-radius: 0 30px 30px 0;
}
.quantity.buttons-added {
    border: 1px solid #333;
    border-radius: 40px;
}
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
    border:none!Important
}
/* Remove arrows in Firefox */
.quantity input.qty[type=number] {
  -moz-appearance: textfield;
}

.quantity input.qty:focus {
  outline: none;

}

/**accordion***/
.accordion{
    margin:50px 0;
}
.accordion-header {
  width: 100%;
  background: #fff;
  border:none;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  color:#333;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.accordion-item {
    border-bottom: 1px solid #ebebeb;
}
.accordion-header:hover {
  background: #eee;
}
.accordion-content p {
    margin: 10px 0;
}
.accordion-content {
    display: none;
    font-size: 14px;
    line-height: 1.5em;
    padding: 10px 15px 15px;
    background: #fff;
    animation: fadeIn 0.3s ease;
}

.accordion-content.open {
  display: block;
}

/* Arrow styles */
.accordion-header .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.accordion-header.active .arrow {
  transform: rotate(-135deg);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =Woocommerce
-------------------------------------------------------------- */
.woocommerce-variation-availability p.stock.in-stock {
    display: none;
}

.woocommerce div.product form.cart .button,
.button{
    background: #333!Important;
    color:#fff!Important;
    border-radius: 30px;
    text-transform: uppercase;
}
div.product span.price,
.price{
    color: #333!important;
    font-weight: 700;
}

.woocommerce .quantity .qty {
    height: 35px;
}
.woocommerce-message {
    border-color: #333;
}
.wp-element-button:hover{
    color:#fff!important; 
    opacity:0.8;
}
.woocommerce-product-details__short-description {
    margin: 20px 0;
}
section.related.products {
    clear: both;
}
section.related.products h2{
    margin-bottom:20px
}
h2.woocommerce-loop-product__title {
    color: #333;
    line-height: 1.2em;
}
table.variations tr th {margin: 20px 0 0;}
table.variations li {
    border-radius: 0!Important;
    font-size: 13px!Important;
    padding: 0px 15px!Important;
}

table.variations label {
    text-transform: uppercase;
    font-size: 14px;
}
/**size chart modal**/
.size-chart {
    font-weight: 700;
    margin-top: 0;
    cursor: pointer;
    right: 0;
    text-align: right;
    margin-left: 50%;
    top: 49px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}
div#chart-modal {
    top: 0;
    position: fixed;
    background: #fff;
    width:44%;
    right: -50%;
    z-index: 9999999;
    height: 100%;
    overflow: scroll;
    transition:all .2s ease;
}
div#chart-modal.active{
    right:0;
    transition:all .2s ease;
}
div#size-chart h3 {
    font-size: 16px;
}
div#chart-modal .close-chart{
    color:#333;
    margin:0;
    width:100%;
    text-align:right;
    padding:0;
    font-weight: 700;
    right:10px;
    position:absolute;
    cursor:pointer;
    font-size:25px;
    top:0;
}
div#chart-modal {
    text-align: center;
}
div#chart-modal img{
    max-width: 600px;
}
div#size-chart table {
    max-width: 500px;
    width: 100%;
    margin: 10px auto 20px;
    border: 1px solid #333;
    padding: 0;
    font-size: 14px;
}
div#size-chart table tr:first-child{
    background:#cccccc;
    font-weight: 700;
}
div#size-chart table tr{
    padding:0;
    margin:0;
    border-spacing: 0;
    border: 1px solid #ccc;
}
div#chart-modal img {
    max-width: 300px;
    margin: 0 auto 30px;
}
div#size-chart table tr td{
    width:32%;
    padding:2px 0;
}
div#size-chart.four-col table tr td{
    width:25%
}
div#size-chart table tr:nth-child(odd){
    background:#ccc;
}
div#size-chart table tr td:first-child {
    font-weight: 700;
}
div#size-info {
    margin: 50px auto 0;
    text-align: left;
    max-width: 500px;
    font-size: 14px;
}
div#size-info img{
    margin:20px auto;
    display:block;
}
ul.wc-bacs-bank-details.order_details.bacs_details li {display: block;float: none;}

ul.wc-bacs-bank-details.order_details.bacs_details {
    margin: 0;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    color: #fff;
}
/* =Footer
-------------------------------------------------------------- */
#footer {
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 2rem 1rem;
}
#footer a {
	color: #ddd;
}
#footer a:hover {
	color: #fff;
}
div#footer-widget-links {
    padding: 3.5%;
    clear:both;
}
.footer-widgets {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.footer-widgets ul{
    display:block;
    padding:0;
    margin:0; 
}
.footer-widgets li{
    display:block;
    font-weight: 700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:17px;
    margin:2px 0
}
.footer-widgets li a{
     color:#333;
}
.footer-widgets li li{
    display:block;
    letter-spacing:0;
    text-transform:none;
    font-weight:400;
    font-size: 15px;
}
footer#footer {
    display: flex;
    align-items: start;
    padding:3.5%;
    justify-content: space-between;
}
#footer .site-name img{
    margin:-20px 0 0;
    filter:grayscale(1) invert(1);
}
div#footer-links ul {
    display: flex;
    align-items: start;
    justify-content:space-between;
    padding:0;
    margin:0;
    text-align:left;
    column-gap:100px
}
div#footer-links ul li{
    display:block;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    font-weight: 700;
}
div#footer-links ul li ul{
    display:block;
}
div#footer-links ul li li{
    font-size: 12px;
    text-transform:none;
    letter-spacing:0;
    font-weight:400
}
div#social-buttons a {
    display: inline-block;
    margin: 0 5px;
}

div#social-buttons h3 {
    margin: 0 0 10px;
}
div#social-buttons i {
    font-size: 27px;
    margin: 0 0  10px;
}
/* =Posts
-------------------------------------------------------------- */
.post {
	margin-bottom: 3rem;
}
.entry-content {
	margin-top: 1rem;
}
.page-thumbnail,
.post-thumbnail {
	margin: 1rem 0;
}
.archive-title,
.page-title,
.entry-title {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.page-id-231 .accordion-item > p {
    display: none;
}

.page-id-231 .accordion-content {
    margin-top: 10px;
}
/* =Widgets
-------------------------------------------------------------- */
.widget-area .widget-set {
	margin-bottom: 2rem;
}
.widget-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	border-bottom: 2px solid #0073aa;
	display: inline-block;
}

/* =Media Queries
-------------------------------------------------------------- */
@media only screen and (min-width: 961px){
#header a.site-name {
    position:absolute;
    left: 0;
    right: 0;
    top:7px;
    margin: auto;
    max-width: 400px;
}
header#header {
    height: 80px;
}
.woocommerce #content div.product div.images, 
.woocommerce div.product div.images, 
.woocommerce-page #content div.product div.images, 
.woocommerce-page div.product div.images{
    width: 65%;
}
.woocommerce #content div.product div.summary, 
.woocommerce div.product div.summary, 
.woocommerce-page #content div.product div.summary, 
.woocommerce-page div.product div.summary{
    width: 31%;
}
.woocommerce div.product .product_title{
    font-size: 1.3rem;
    line-height:1.3rem;
}
.woocommerce div.product:after {
    clear: both;
    content: '';
    display: block;
}

.summary.entry-summary {
    position: sticky;
    top: 120px;
}
ul.wc-bacs-bank-details.order_details.bacs_details li {display: block;float: none;}

ul.wc-bacs-bank-details.order_details.bacs_details {
    margin: 0;
}
section.woocommerce-bacs-bank-details {
    display: flex;
    column-gap: 10px;
}
section.woocommerce-bacs-bank-details h3 {
    display: none;
}
h2.wc-bacs-bank-details-heading {
    position: absolute;
    top: 0;
}
section.woocommerce-bacs-bank-details {
    padding-top: 40px;
    position: relative;
}
/***about us****/

div#mission, div#vision, div#core-values {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 16px;
    font-weight:400;
    line-height: 2em;
    margin:0 auto;
    letter-spacing:1px;
}
div#mission img, div#vision img, div#core-values img{
    width: 700px
}
div#vision {
    flex-direction: row-reverse;
}
}
@media (max-width: 768px) {
    div#front-banner {
    height: 400px;
    background-size: cover;
    background-attachment: initial;
}
.menu-toggle {
    display: flex;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    display: flex;
    margin-top:-20px;
  }

  .navigation ul {
    flex-direction: column;
    width: 100%;
  }

  .navigation li {
    width: 100%;
    padding: 10px 0;
  }
	#content-sidebar,
	.footer-widgets,
	footer#footer,
	div#footer-links ul,
	div#display-product{
		flex-direction: column;
	}
	#sidebar {
		width: 100%;
		margin-left: 0;
		margin-top: 2rem;
	}
	#header {
         padding:.2rem;
    }
    .header-icons .dashicons{
         font-size: 20px;
        margin:0;
    }
    .header-icons {
        margin-left: -20px;
    }
    div#display-products .product-grid {
        flex-direction: column;
        justify-content: center;
    }
    div#front-banner h1{
        font-size:40px;
        line-height:1em;
        margin-bottom:10px;
    }
    .product-card {
        margin: 0 auto 25px;
        width: calc(35% - 25px);
    }
    .product-grid .product-card .product-display {
        margin: 0 auto 10px;
        height: 300px;
    }
    footer#footer {
        text-align: center;
        justify-content: center;
    }
    footer#footer > div{
        width:100%;
    }
    div#footer-links ul{
        text-align:center;
        display:block;
        margin:5px 0;
    }
    #footer .site-name img {
        margin: 0 auto;
    } 
    div#footer-links ul li {
    display: inline-block;
    width: 32%;
    vertical-align: top;
    text-align:left;
    font-size: 11px;
}

div#footer-links ul li li{
    display:block;
    text-align:left;
}
div#footer-links {
    border-top: 1px solid #ccc;
    padding:10px 0;
    margin:10px 0;
}
    div#chart-modal {
    text-align: center;
    padding: 30px;
}
.woocommerce ul.products li.product .button {
    font-size: 12px;
}
div#chart-modal img{
    max-width: 100%;
}
div#chart-modal {
    width:100%;
    right:-100%;
}
.woocommerce div.product form.cart .button{
    width: 76%;
}
div#scroll-text span:nth-child(2){
    display:none
}
#welcome-banner{
    font-size: 20px;
}
#welcome-banner .close{
    right: 2px;
}
}

@media (max-width: 600px) {
    div#front-banner {
        height: 244px;
        background-size: cover;
        background-attachment: initial;
    }
    .product-card {
        margin: 10px;
        width: calc(50% - 23px);
    }
    .product-grid .product-card .product-display {
        margin: 0 auto 10px;
        height: 200px;
    }
     div#front-banner h1{
        font-size:26px;
    }
    .archive-title, .page-title, .entry-title {
        font-size: 21px;
        margin-bottom: 1rem;
        line-height: 1.2em;
    }
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}
/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}
@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}