/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0-beta1
 Requires at least: 5.0
 Tested up to: 6.5.2
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

/* Typography CSS */
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-weight: 700;
    color: #151515;
    letter-spacing: -0.06rem;
    word-break: keep-all;
}
h1, .h2 {
    font-size: 5rem; /* 80px; */
    line-height: 0.85;
}
h2, .h2 {
    font-size: 3.8125rem; /* 61px; */
    line-height: 0.85;
}
h3, .h3{
    font-size: 2.9375rem; /* 47px; */
    line-height: 0.85;
}
h4, .h4{
    font-size: 2.25rem; /* 36px; */
    line-height: 1.25;
}
h6, .h6 {
    font-size: 1.3125rem; /* 21px; */
    line-height: 1.25;
}
.font-md{
    font-size: 0.875rem; /* 14px; */
}
.font-sm{
    font-size: 0.75rem; /* 12px; */
}
.font-xs{
    font-size: 0.625rem; /* 10px; */
}


h3 em{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 2.9375rem;
    font-style: italic;
    font-weight: 400;
    line-height: 0;
    width: fit-content;
}
.text-link{
    letter-spacing: 0.0875rem;
    position: relative;
    padding-block: 0.390rem;
}
.text-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
}
.text-link-dark:before {
    background-color: #151515;
}

.btn{ font-size: 0.714rem;border-radius: 0;letter-spacing: 2px;font-weight: 700;
    font-family: Helvetica, sans-serif;padding:0.778rem 1.264rem ;}
.button-text {
    position: relative;
    min-width: auto;
    min-height: auto;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.4px;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.button-text:after {
    content: "";
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 50%;
    display: block;
    width: 100%;
    transform: translate(-50%);
    height: 1px;
    background-color: rgb(21,21,21);
    transition: background-color 400ms, width 400ms;
}
.button-text:hover:after {
    background-color: rgb(21,21,21);
    width: 30%;
}    
.btn-dark:hover{
    background-color: transparent;
    color: #151515;
}
.btn-outline-dark {
    --bs-btn-color: #151515;
    --bs-btn-border-color: #151515;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #151515;
    --bs-btn-hover-border-color: #151515;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #151515;
    --bs-btn-active-border-color: #151515;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #151515;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #151515;
    --bs-gradient: none;
}
.btn:focus-visible{
    box-shadow: none;
}
:not(.btn-check)+.btn:active{
    border: none;
}
.bg-light{
    background-color: #f8f8f8;
}

hr{
    border-color: rgba(235,235,235, 1);
    opacity: 1;
}
.container, .max-w-page {
    max-width: 1680px;
}

.svg-icon svg{
    width: 1.25rem;
    height: 1.25rem;
}

/* Form Control CSS */
.form-control{
    font-size: 0.75rem;
    border: solid 1px #ebebeb;
    border-radius: 0;
    padding: 1rem;
}
.form-control:focus, .form-control:hover{
    border-color: #151515;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}
textarea.form-control-lg{
    height: 124px;
}
.form-control::placeholder {
    color: rgb(21, 21, 21, .5);
}
.form-control:-ms-input-placeholder {
    color: rgb(21, 21, 21, .5);
}

.form-control::-ms-input-placeholder { 
    color: rgb(21, 21, 21, .5);
 }

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Slick CSS */
.slick-prev:before, .slick-next:before{
    color: #151515;
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
.slick-prev, .slick-next{
    z-index: 1;
}
.slick-prev:before, .slick-next:before{
   font-family: "Font Awesome 6 Free";
   display: inline-block;
   vertical-align: middle;
   font-weight: 900;
   font-size: 14px;
}
.slick-prev:before {
   content: "\f104";
}

.slick-next:before {
   content: "\f105";
}


/* Header CSS */
.header{
    padding:0 2.25rem;
}
.header-inner{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;width:100%;
}
.carousel-item img{
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}
.carousel-caption{
    left: 0;
    right: 0;
}
.search-bar{
    position: relative;
    width: 18px;
    margin-left: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-brand{
    transition: opacity 300ms;
}
.navbar-brand:hover {
    opacity: .7;
}

/* Default: absolute over hero */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  border-bottom: solid 1px rgba(21, 21, 21, 0.1);
}

.home .site-header, .page-template-page-about .site-header{
    position: absolute;
}

.site-header .navbar {
  background-color: rgba(255,255,255,0);  /* transparent at top */
  transition: background-color .3s ease, box-shadow .3s ease;
}

/* When scrolled */
.site-header.is-stuck {
  position: fixed !important;    /* take it out of flow and stick it */
  top: 0;
  left: 0;
}

.site-header.is-stuck .navbar {
  background-color: #fff;
    border-bottom: solid 1px rgba(21, 21, 21, 0.1);
}

/* Start state: white logo visible, links white */
.logo-white { display: none; }
.site-header .navbar .nav-link { color: #151515; }


/* Sticky state: dark logo visible, links dark */
.site-header.is-stuck .logo-white { display: none; }
.site-header.is-stuck .logo-dark  { display: inline-block; }
.site-header.is-stuck .navbar .nav-link { color: #151515; } /* dark grey/black */
.site-header.is-stuck .svg-icon svg, .site-header.is-stuck .fa-bars{ color: #151515 !important;}


.home .site-header, .page-template-page-about .site-header{
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.home .site-header .navbar .nav-link, .page-template-page-about .site-header .navbar .nav-link{
    color: #fff;
}
.home .navbar-brand .logo-dark, .page-template-page-about .navbar-brand .logo-dark{
    display: none;
}
.home .navbar-brand .logo-white, .page-template-page-about .navbar-brand .logo-white{
    display: block;
}
.home .site-header .svg-icon svg, .page-template-page-about .site-header .svg-icon svg, .home .site-header .fa-bars, .page-template-page-about .site-header .fa-bars{
    color: #fff;
}
.home .site-header.is-stuck .logo-white, .page-template-page-about .site-header.is-stuck .logo-white{
    display: none;
}
.home .site-header.is-stuck .logo-dark, .page-template-page-about .site-header.is-stuck .logo-dark{
    display: block;
}
.home .site-header.is-stuck .navbar .nav-link, .page-template-page-about .site-header.is-stuck .navbar .nav-link{
    color: #151515;
}

/* Navbar CSS */
.navbar-nav .nav-link:before, .search-bar:before { content: "";position: absolute;inset-block-end: 0;inset-inline-start: 0;width: 100%;height: 1px;
    background-color: currentColor;opacity: .3;transform: scaleX(0);transform-origin: right;transition: transform 400ms, opacity 400ms;
}
.navbar-nav .nav-link:hover:before, .search-bar:hover:before{ opacity: 1;transform: scaleX(1);transform-origin: left;}
.nav-link{ font-weight: 700;text-transform: uppercase;font-size: 0.625rem;color: #fff;letter-spacing: 1.4px; position: relative;}
.nav-link:hover, .nav-link:focus { color: #fff;}

/* Home Page Top Carousel CSS */
.carousel-item:before{
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}
.carousel-control-prev, .carousel-control-next{
    width: 4%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
}    
.hero_subheading{
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-heading{
    margin-bottom: 20px;
    font-size: 5rem;
    line-height: 1.25;
}
.hero-entry {
    margin-bottom: 24px;
}

.carousel-fade .carousel-item .carousel-caption{
    transform: translateY(100%);
    transition: transform .9s;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}

.carousel-fade .carousel-item.active .carousel-caption{
    transform: translateY(0%);
}

/* Middle Section CSS Start */
.section{
    padding: 80px 36px;
}

.section-heading{
    font-size: 2.9375rem;
}

/* 1 Best Sellers Section CSS */
.best-sellers .slick-slide, .featured-bundle .slick-slide, .collections .slick-slide, .similar-post .slick-slide{
    padding-right: 12px;
}
.best-sellers .slick-list, .featured-bundle .slick-list{
    padding-right: 24px !important;
    padding-left: 0 !important;
}
.best-sellers .slick-prev, .best-sellers .slick-next{
    position: inherit;
    color: #000;
}
.best-sellers .slick-prev:before, .best-sellers .slick-next:before{
    color: #000;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.142rem;
}
.product-card-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: space-between;
    text-align: initial;
}
.product-card .product-card-title, .product-card .product-price{
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: .48px;
    text-transform: uppercase;
}
.product-card .product-price{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.product-card .product-card-variants-info {
    font-size: 0.75rem;
    color: rgba(21,21,21, .5);
    font-family: Helvetica, sans-serif;
}
.product-hover{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}
.product-card .view-more-btn{
    opacity: 0;
    position: absolute;
    bottom: 0.625rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
    display: block;
    z-index: 1;
}
.product-card .view-more-btn:hover{
    background-color: #343434;
    color: #fff;
}
.product-card .hover-image{
    opacity: 0;
    transition: .7s ease;
    display: block;
}
.product-card:hover .view-more-btn, .product-card:hover .hover-image{
    opacity: 1;
}

/* 2 Video CTA Section CSS */
.video-section{
    /* padding: 6.071rem; */
    height: 33svh;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.video-section .media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    --media-aspect-ratio: 1.667;
}
.video-section .media-overlay:after {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}
.video-section .media video{
    pointer-events: none;
    border: none;
    max-width: none;
    width: 100%;
    height: 108%;
        object-fit: cover;
    object-position: center center;
    --duration-extra-long: 600ms;
}
.video-section .media-content {
    flex-direction: column;
    justify-items: stretch;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    gap: 16px;
}

.btn-light{
    border: 1px solid rgb(255,255,255);
    color: #111111;
}
.btn-light:hover{
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.text-label {
     letter-spacing: .24rem;
}

/* 3 Featured Bundles Nav Tab Section CSS */
.bundles-nav.nav-pills .nav-link{
    font-size: 3.357rem;
    color: rgba(21,21,21, .25);
    text-transform: capitalize;
    letter-spacing: normal;
}
.bundles-nav.nav-pills .nav-link:hover{
    color: rgba(21,21,21, .5);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: transparent;
    color: #151515;
    border-radius: 0;
}
.featured-bundle .slider{
    padding-left: 36px;
}

/* Collections Section CSS */
.card-collection a .media img, .dual-tile-media-block img{
    transition: transform 600ms ease;
}
.card-collection a:hover .media img, .dual-tile-media-block:hover img {
    transform: scale(1.05);
}


/* 4 Hero Banner Section CSS */
.section-height-half {
    height: 50svh;
    overflow:hidden;
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-position-background .media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.media-position-background .media img {
    object-fit: cover;
    object-position: center center;
}
.card-collection-counter{
    font-size: 0.75rem;
    letter-spacing: .24rem;
    opacity: .75;
    white-space: nowrap;
}
.section-full-width-banner-content{
    position: relative;
    z-index: 1;
}

/* 5 Featured Bundle Tab CSS */
.featured-bundle .slick-next {
    right: 60px;
}    
.featured-bundle .slick-prev {
    left: 60px;
}    
.featured-bundle .slick-prev:before {
   content: "\f060";
}
.featured-bundle .slick-next:before {
   content: "\f061";
}

/* 6 Heighlighted Section CSS */
.product-title{
    font-size: 1rem;
}
.highlighted-product__heading {
    padding: 0;
    margin-block-end: 2.5rem;
    line-height: 85%;
    letter-spacing: -2.16px;
    font-size: 2.9375rem;
}
.product-price .price {
    font-size: 0.875rem;
}
.product-price-info{
    color: rgba(21,21,21, .7);
    font-size: 0.75rem;
}
.responsive-highlighted-product .slick-slide{
    margin-right: 8px;
}
.slider-wrap {
  position: relative;
}

.slider-wrap .slider-counter {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 3;
  line-height: 1;
  font-size: 0.75rem;
  color: rgba(21,21,21, .5);
  backdrop-filter: saturate(120%) blur(2px);
}
.slider-wrap  .slider-counter .current.active {
  color: #151515; 
}


/* 7 Compare Section CSS */

/* Container */
.ba-compare{
  --pos:50;              
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;   
  overflow:hidden;
  border-radius:8px;
  background:#eee;
}

/* Images */
.ba-img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  user-select:none; -webkit-user-drag:none;
}
.ba-img--before{ z-index:1; }
.ba-img--after{
  z-index:2;
  clip-path: inset(0 calc(100% - var(--pos,50) * 1%) 0 0); 
}

/* Vertical divider + handle */
.ba-handle{
  position:absolute; inset:0;
  pointer-events:none; z-index:3;
}
.ba-handle::before{
  content:"";
  position:absolute; top:0; bottom:0;
  left: calc(var(--pos,50) * 1%);
  transform: translateX(-50%);
  width:2px; background:#fff; box-shadow:0 0 0 1px rgba(0,0,0,.25);
}
.ba-knob{
  position:absolute;
  top:50%;
  left: calc(var(--pos,50) * 1%);
  transform: translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%;
  background: rgba(255,255,255,.85);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  display:inline-grid; place-items:center;
}
.ba-knob::before{
  content:"";
  width:14px; height:14px; border-radius:50%;
  background:#666;
}

/* Range input (for a11y + dragging) */
.ba-range{
  position:absolute; inset:0;
  appearance:none; background:transparent;
  cursor:ew-resize; z-index:4;
  outline:none;
}
.ba-range::-webkit-slider-thumb{ appearance:none; width:1px; height:100%; }
.ba-range::-moz-range-thumb{ width:1px; height:100%; border:0; background:transparent; }

/* Corner labels */
.ba-label{
  position:absolute; z-index:5;
  bottom:12px; padding:0.5rem 1rem;
  color:#151515; background:rgba(255,255,255,.25);
      backdrop-filter: blur(4px);
      border-radius: 4px;
      font-size: 0.75rem;
}
.ba-label--before{ left:12px; }
.ba-label--after { right:12px; }

.compare-slider__content {
    display: flex;
    align-items: start;
    flex-direction: column;
    row-gap: 1.5rem;
}
.compare-slider__content-group {
    display: flex;
    flex-direction: column;
    gap:1.5rem;
    flex-basis: auto;
}
.compare-slider__text{
    font-size: 0.8125rem;
    line-height: 1.6;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}

/* 8 Shop the Loop Section */
.shop-the-look .section-heading{
    font-size: 3.8125rem;
}
.custom-dots {
  text-align: center;
}
.custom-dots ul, .center-dots ul{
    display: flex !important;
    position: inherit;
    bottom: 0;
    width: auto;
}
.custom-dots .slick-dots li, .center-dots .slick-dots li{
    width: auto;
    height: auto;
    margin: 0;
}
.custom-dots li button:before, .center-dots li button:before {
  font-size: 12px;
  color: #151515;
}
.custom-dots .slick-dots li, .custom-center .slick-dots li{
    width: 2.0625rem;
    height: auto;
    margin: 0;
}
.custom-dots .slick-dots li button, .center-dots .slick-dots li button{
    width: 2.0625rem;
    height: auto;
}
.custom-dots .slick-dots li button:before, .center-dots .slick-dots li button:before{
    width: 2.0625rem;
    height: 0.125rem;
    content: '';
    background-color: #151515;
}

/* 9 Dual Tiles Media */

.dual-tiles-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 100%;
}
.dual-tiles-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2.4rem;
    padding:3rem;
}
.dual-tiles .dual-tiles-media img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 10 Testimonials */
.testimonials{
    background-color: #f8f8f8;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.testimonials-subheading {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    font-size: 0.75rem;
    margin-bottom: 1.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.center-dots{
    margin-top: 2.25rem;
}
.testimonial__body{
    background: #fff;
    height: 100%;
    overflow: auto;
    padding: 2rem;
    font-family: Helvetica, sans-serif;
    min-height: 12.125rem;
}
.testimonial__author {
    font-size: 1rem;
    font-style: normal;
}
.testimonial__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.25rem;
}
.testimonial__rating-circle {
    display: inline-block;
    border-radius: 100%;
    width: 0.5rem;
    height: 0.5rem;
    background: #151515;
}
blockquote.testimonial__quote p {
    margin-top: 1rem;
    letter-spacing: 0.0175rem;
    font-size: 0.875rem;
}
.center-slider-wrap .slick-slide, .swiper .slick-slide{
    margin-right: 0.75rem;
}

/* 11 Rotate Slider */
.social-media-highlights__content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.25rem;
    aspect-ratio: 1 / 1;
    padding: 2.5rem;
    background-color: #151515;
}

/* 12 Faq CSS */

/* reset BS defaults */
.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #eee;       
  background: transparent;
  border-radius: 0 !important;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: 0;                     
}

.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none !important;
  padding: 2rem 0;                  
  font-weight: 700;                       
  font-size: 1rem;                 
  color: #151515;            
  transition:300ms;            
  text-decoration: underline solid transparent 1px;
}

/* subtle hover focus */
.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:focus {
        text-decoration-color: currentColor;
}

/* body copy */
.faq-accordion .accordion-body {
  padding: 0 0 2rem 0;                
  line-height: 1.7;
  max-width: 920px;      
  font-size: 0.875rem;   
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;             
  color: rgba(21, 21, 21, .75);
}
.faq-accordion .accordion-body p:last-child{ margin-bottom: 0;}

.accordion-button::after{
    width: 1rem;
    height: 1rem;
    background-size: cover;
}

/* Footer CSS */
.trust-indicators-section {
    row-gap: 1rem;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    background-color: #111111;
     padding:2.25rem;
}
.trust-indicators-section .trust-indicators-slide{
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex: 1;
    margin-right: 1rem;
}
.trust-indicators-section .trust-indicators-slide:last-child{
    margin-right: 0;
}
.trust-indicators-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgb(21, 21, 21, .2);
    border-radius: 50%;
    min-width: 3rem;
}
.trust-indicators-icon svg{
    width: 1.5rem;
    height: 1.5rem;
}
.trust-indicators-title{
    font-size: 1rem;
}
.widget-title{
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.01rem;
    padding-block: 0.390rem;
    margin-block-end: 1rem;
    color: rgba(255, 255, 255, .75);
}
.menu li a{
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 1.0);
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;  
}
.bg-dark{
    background-color: #111111 !important;
}
.bootscore-footer-columns{
    padding-top: 2rem;
    padding-bottom: 1rem;;
}
.footer-columns{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.footer{
    padding: 2rem 0;
    
}
.section-footer{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2.25rem 0 2.25rem;
}
.newsletter p{
    font-size: 0.875rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
    margin: 0;
    width: 100%;
}
.subscribe-form .wpcf7-submit{
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
}
:focus-visible{
    outline: none;
}
.subscribe-form .form-control-lg, .subscribe-form .wpcf7-submit, .subscribe-form .wpcf7-form-control.wpcf7-email{
    border-radius: 0;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
    border-color: #ebebeb;
    font-weight: 700;
    font-family: Helvetica, sans-serif;
    padding: 0.778rem 1.264rem;
    border: 0;
    background-color: #f8f9fa;
}
.subscribe-form .wpcf7-form-control.wpcf7-email{
    width: 100%;
}
.subscribe-form .wpcf7-list-item{
    margin: 0;
}
.subscribe-form button:hover, .subscribe-form .wpcf7-submit:hover{
    background-color: #ebebeb;
    color: #151515;
}
.subscribe-form .form-check-label{
    font-size: 0.75rem;
}
.subscribe-form .form-check-input[type="checkbox"]{
    border-radius: 0;
    background-color: transparent;
    border: solid 1px #ebebeb;
}
.subscribe-form .wpcf7 form .wpcf7-response-output {
    margin: 1em 0 0;
    padding: 0.2em 1em;
    font-size: 0.625rem;
}

.bootscore-footer-info{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bootscore-copyright{
    color: rgba(255, 255, 255, .7);
    letter-spacing: .048rem;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
}
.bootscore-footer-info .container-fluid{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.footer__social {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    align-items: center;
}
.list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer__social svg {
    width: 1.5rem;
    height: 1.5rem;
}
.footer__social svg path{
    color: #fff;
}
.footer__payment .list-payment {
    font-size: 0;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    gap: 0.5rem;
}
.footer__payment .list-payment__item>svg {
    width: 1.75rem;
}
.footer__payment .list-payment__item>svg.icon {
    fill: currentColor;
     -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/* Abous Us Page CSS */
.hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    height: 100vh;
}
.hero-banner-full .hero-media {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.hero-banner-full .hero-media video{
    width: 296%;
    max-width: 296%;
}
.hero-banner-full .hero-media video{
    border: none;
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
.media img, .media>iframe, .media video {
    object-fit: cover;
    object-position: center center;
    transition: opacity var(--duration-extra-long), visibility var(--duration-extra-long);
}
.hero-banner .hero-media.media-overlay:before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-content{
    padding: 4rem 2.25rem;
    position: relative;
    z-index: 2;
}

.section-dual-tiles-media img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.row-sm{
    margin-right: -8px;
    margin-left: -8px;
}
.max-w-narrower{
    max-width: 788px;
}
h2.accordion-header {
    margin-bottom: 0 !important;
}

/* Contact Us Page CSS */
.contact-us-section p.sub-text{
    color: rgb(21, 21, 21, .7);
}
.contact-us-form{
    margin-top: 4rem;
}
.contact-us-form .wpcf7-submit{
    font-size: 0.714rem;
    border-radius: 0;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: Helvetica, sans-serif;
    padding: 0.778rem 1.264rem;
    text-transform: uppercase;
    background-color: #111111;
    color: #fff;
    border:solid 1px #111111;
}
.contact-us-form .wpcf7-submit:hover {
    background-color: transparent;
    color: #151515;
}
.field-label{
    margin-bottom: 0.5rem;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.625rem;
}

/* Post CSS */

.go-back-link{
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: 0.625rem;
}
.product-title{
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.price-regular{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
}
.product-price-info {
    color: rgba(21, 21, 21, 0.7);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: auto;
}
.product-sku span {
    display: inline-block;
    padding: 0.5rem;
    background-color: rgba(21, 21, 21, 0.05);
    color: #151515;
    line-height: 1.25;
    letter-spacing: 2px;
}
.product-text{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    line-height: 1.50;
    letter-spacing: .04rem;
}
.product-text svg{
    width: 0.75rem;
    height: 0.75rem;
}
.entry-content p{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6{
    margin-bottom: 1rem;
}
.announcement-bar{
    padding: 0.825rem 0;
    line-height: 1.25;
    font-size: 0.625rem;
    color: #fff;
    background-color: #111111;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}
.announcement_bar__marquee{
    gap: 3rem;
    position: relative;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    column-gap: 3rem;
    max-width: 100%;
}
.announcement_bar__marquee.enable-animation .marquee__content {
    --marquee-transform-translate-x: -100%;
    animation: marquee linear infinite;
    animation-duration: 150s;
    animation: marquee-animation 150s linear infinite; 
}
.announcement_bar__marquee .marquee__content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    align-items: center;
    column-gap: 3rem;
    min-width: 100%;
    font-family: inherit;
    font-weight: inherit;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 1px;
    margin: 0;
    list-style: none;
}
.announcement_bar__marquee .marquee__content p{
    margin: 0;
}
.section-dual-tiles-block{
    position: relative;
}
.section-dual-tiles-media{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.section-dual-tiles-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.richtext{
    line-height: 1.6;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}

/* Categories Page CSS */
.category-page-header, .single-product-details{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.category-page-header{
    background: url('assets/img/COLLECTIONS.webp') no-repeat center center;
    background-size: cover;
    height: 33svh;
}
.category-page-header > div{
    padding-top: 5.5rem;
}
.archive-description{
    margin-top: 1.125rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.seo-content{
    padding: 4rem 2.25rem;
}

.max-w-lg, .max-w-narrow {
    max-width: 1328px;
}
.article-hero{
    max-width: 1120px;
}
.article-head{
    max-width: 788px;
}
.media>*, .media img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: 1;
    position: relative;
}
.article-card__date{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    letter-spacing: 2px;
}
.media {
    display: block;
    position: relative;
    overflow: hidden;
}
.card-article__media {
    transition: opacity 300ms;
    aspect-ratio: 1 / 1; /* or 3 / 4 */
}
.article__media {
    aspect-ratio: 16 / 9;
}
.article__media_blog {
    aspect-ratio: 3 / 4;
}
.article__content h3{
    font-size: 2.25rem; /* 36px; */
    line-height: 1.25;
    text-transform: uppercase;
}
.article__content strong{
    font-weight: 700;
}

.social-sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65706e;
}
.social-sharing a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.search-hero__title-small{
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
}

.page-item{
     margin-left:1rem;
}
.page-item:first-child{
    margin: 0;
}
.page-link{
    border: 0;
    border-bottom: solid 1px rgb(21, 21, 21, .2);
    color: #151515;
    border-radius: 0;
    width: 1.5rem;
    height: 1.75rem;
    padding: 0.1875rem;
   
    text-align: center;
    font-size: 0.875rem;
}
.page-link:hover, .page-link:focus{
    background-color: transparent;
    color: #151515;
    border-color: #151515;
    box-shadow: none;
}
.page-item:last-child .page-link{
    border-radius: 0;
}
.page-item:first-child .page-link{
    border-radius: 0;
}
.active>.page-link{
    background-color: transparent;
    border: 0;
    border-bottom: solid 1px #151515;
    color: #151515;
}
.entry-content-page{
    color: rgba(21, 21, 21, 0.7);
}
.page-sidebar-none{
    padding: 0 2.25rem;
}

/* Top Search Bar CSS */
.modal-open { overflow: hidden;}
.modal-search .modal-header{ padding: 3rem 2rem 0 2rem;}
.modal-search .modal-body{ padding:0 2rem;}
.live-search { position: relative; z-index: 30; }
.live-search__bar { display:flex; gap:.5rem; align-items:center; }
.live-search__input { width:100%; font-size:1.6875rem; padding:.5rem .75rem; }
.live-search__clear, .clear-page-search { background-color: #ebebeb;font-weight: 500;width:fit-content;height:1.5rem;
    letter-spacing: 1.4px;font-size: 0.625rem;border: 0;padding:0 0.75rem;}
.live-search__bar svg{ width: 1.5rem;height: 1.5rem;}    
.live-search__overlay { border-top:1px solid #ebebeb; overflow:auto; }
.live-search__inner { padding:2rem 0;}
.live-search__heading { text-transform:uppercase; font-size:0.625rem; letter-spacing:0.0875em; color:#151515; margin-bottom:12px;opacity: .5;font-weight: 500;}
.live-search__footer { display:flex; justify-content:flex-end; margin-top:22px; }
.live-search__grid{ display: flex;flex-wrap: wrap;margin-right: -12px;margin-left: -12px;}
.live-search__grid>*{ padding-left: 12px;padding-right: 12px;}
.search-form-button{ position:absolute;right:0;top:2px}

.testimonials-list{display:grid;gap:20px}
.testimonial-item{background:#fff;border:1px solid #eee;border-radius:12px;padding:16px}
.testimonial-name{margin:0 0 8px;font-weight:600}

/* Layout */
.post-gallery{
  display:grid;
  grid-template-columns:135px 1fr;
  gap:16px;
  align-items:start;
  overflow-y: auto;
  position: -webkit-sticky;
  position: sticky;
}
.post-thumbnail{
position: -webkit-sticky;
  position: sticky;
}

/* Thumbs */
.pg-thumbs{ max-height: calc(100% - 80px); overflow:auto; }
.pg-thumb{
  display:block; padding:0; border:0; background:transparent;
  opacity:.6; cursor:pointer; overflow:hidden; border: solid 2px transparent;
    margin-bottom: 16px;
    scrollbar-width: none; /* Hides the scrollbar in Firefox */
}

.pg-thumbs {
  overflow-y: auto;   /* still scrollable */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.pg-thumbs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.pg-thumb::-webkit-scrollbar {
  display: none;
}        
.pg-thumb img{ width:100%; height:115px; object-fit:cover; display:block; }
.pg-thumb.is-active{ opacity:1;border-color: #151515; }

/* Main image + arrows */
.post-gallery__main{ position:relative; width:100%;overflow:hidden; background:#fafafa; }
.pg-main{
  width:100%; height:auto; object-fit:contain; display:block;
  transition: transform .4s ease, opacity .4s ease;
  
}
/* slide states */
.pg-main.slide-out-left  { transform:translateX(-30%); opacity:0; }
.pg-main.slide-out-right { transform:translateX(30%);  opacity:0; }
.pg-main.slide-in-left   { transform:translateX(-30%); opacity:0; }
.pg-main.slide-in-right  { transform:translateX(30%);  opacity:0; }
.pg-main.active          { transform:translateX(0);     opacity:1; }

.pg-nav{
  position:absolute;top:50%; transform:translateY(-50%);
  background:#fff;width:40px; height:40px; border:0; color:#333;border: solid 1px #ebebeb;
  display:flex; align-items:center; justify-content:center;cursor:pointer;
}
.pg-prev{ left:24px; } .pg-next{ right:24px; }

/* CPT Post Gallery CSS */
.acf-gallery-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;

  margin: 0 auto;
}

.thumb-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb-column img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb-column img.active,
.thumb-column img:hover {
  border-color: #151515;
}

.main-image-area {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-area img {
  max-width: 100%;
  transition: opacity 0.3s ease;
}

.navigate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  background:#fff;
  width:40px; 
  height:40px; 
  color:#333;
  border: solid 1px #ebebeb;
}

.navigate.prev { left: 24px;}
.navigate.next { right: 24px;}

/* Responsive */
@media (max-width:991.98px){
  .post-gallery{ grid-template-columns:1fr; }
  .pg-thumbs{ height:auto; display:flex; gap:8px; flex-wrap:wrap; max-height: inherit;}
  .pg-thumb img{ height:80px; }
}

@media(max-width:767px){
  /* .post-gallery{ grid-template-columns:1fr; }
  .post-gallery__thumbs{ height:auto;overflow: inherit;max-height: inherit;}
  .post-gallery__thumbs .swiper-wrapper{ display:flex; }
  .post-gallery__thumbs img{ height:80px; } */
}

/* Defines the animation keyframes */
@keyframes marquee-animation {
  0% {
    /* Starts the text completely off-screen to the right */
    transform: translateX(0); 
  }
  100% {
    /* Moves the text completely off-screen to the left */
    transform: translateX(-100%); 
  }
}

/* Responsive CSS Start */
@media (min-width: 768px) {
  .slider-wrap .slider-counter {
    font-size: 0.75;
    padding: 7px 12px;
  }
	#sidebar.fixed {
        position: sticky;
        top: 100px;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-right:0.857rem;
        margin-left: 0.857rem;
    }
}

@media screen and (min-width: 768px) {
    .article__content p, .article__content ul, .article__content ol, .article__content blockquote {
        margin-bottom: 3rem;
    }
    .shop-the-look__item--slider {
        width: 60%;
        margin: 0 auto;
    }
    .product-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
    }
    .announcement_bar__marquee .marquee__content {
        --marquee-duration: 150s;
    }
    .section-dual-tiles-block-media {
        aspect-ratio:1/1;
    }
    .hero-banner-full .hero-media video{
            width: 100%;
            height: 100%;
        
    }
    .hero-content{
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 992px) {
    .shop-the-look__item--slider {
        width: 45%;
    }
    .social-sharing {
        position: absolute;
        right: -60px;
        top: 24px;
        z-index: 2;
        width: fit-content;
        flex-direction: column;
        width: 2rem;
    }
    .social-sharing.sticky {
        position: fixed;
        top: 100px; 
    }
    /* .post-gallery.sticky {
        position: fixed;
        top: 100px;
    } */
    .compare-product .container {
        padding: 0 2.25rem;
    }
}
@media (max-width:1199.98px) {
.acf-gallery-wrapper {
    flex-direction: column;
}
.thumb-column {
    flex-direction: row;
    overflow-y: auto;
}
.thumb-column img{
    width: 60px;
    height: 60px;
}
}
@media (max-width: 991.98px) {
    .bundles-nav.nav-pills .nav-link {
        font-size: 2.9375rem;
    }
    .social-media-highlights__content-card{
        padding: 0.5rem;
    }
    .hero-content {
        padding: 4rem 0rem;
    }
    .hero-heading{
        font-size: 2.9375rem;
        line-height: 1;
    }
    .category-page-header{
        background-position: 80% 100%;
    }
}
@media (max-width: 767.98px) {
    .header{
        padding: 0 1rem;
    }
    .offcanvas-header{
        border-bottom:solid 2px rgba(21, 21, 21, 0.1);
    }
    .offcanvas.offcanvas-end{
        border: 0;
    }
    .btn-close:focus{
        box-shadow: none;
    }
    .site-header .navbar .nav-link{
        font-size: 1.3125rem;
        text-transform: capitalize;
        font-weight: 400;
        border-top: solid 1px rgba(21, 21, 21, 0.1);
        letter-spacing: -0.0525rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        color: #151515 !important;
    }
    .site-header .navbar li:first-child .nav-link{
        border: 0;
    }
    .section {
        padding: 48px 16px;
    }
    .section-heading, .dual-tiles-content .h3 {
        font-size: 1.6875rem;
    }
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
        letter-spacing: -0.015rem;
    }
    h2, .h2 {
        font-size: 2.25rem;
    }
    h3, .h3 {
        font-size: 1.6875rem;
        line-height: 1;
    }
    h4, .h4 {
        font-size: 1.3125rem;
        line-height: 1;
    }
    h6, .h6 {
    font-size: 0.75rem;
    line-height: 1.20;
    }
    .section-height-half--mobile {
        height: 50svh;
    }
    .bundles-nav.nav-pills .nav-link {
        font-size: 1.6875rem;
        letter-spacing: -0.02em;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .featured-bundle .slider{
        padding-left: 16px;
    }
    .compare-product .container {
        padding: 0;
    }
    .shop-the-look .section-heading{
        font-size: 0.625rem;
    letter-spacing: 0.125rem;
    margin-top: -75px;
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-left: 45px;
    margin-right: 45px;
    line-height: 1;
    }
  .dual-tiles-content{
    padding: 2.25rem;
    row-gap: 1.5rem;
  }
  .testimonial__body{
    padding: 2rem 1.5rem;
    min-height: 13.425rem;
  }
  .bootscore-footer-info .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .trust-indicators-section{
    display: block;
  }
  .trust-indicators-section .trust-indicators-slide{
    margin-right: 0;
    margin-bottom: 1rem;
  }

  /* About Us Page CSS */
  .section-dual-tiles-media{
    position: inherit;
  }
  .section-dual-tiles .section-dual-tiles-block{
    padding: 2.25rem !important;
  }

  /* Category Page CSS */
  .archive-description{
    display: none;
  }
  .article__content h3, h3 em{
    font-size: 1.3125rem;
  }

  /* Single Post Page CSS */
  .single-product-details {
    padding-left: 1rem;
    padding-right: 1rem;
    }
    .dual-tiles-block-content{
        padding: 2.25rem !important;
    }
    .modal-search .modal-dialog{
        margin: 0;
    }
    .modal-search .modal-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    .modal-search .modal-body {
        padding: 0 1rem;
    }
    .modal-search .container-fluid{
        padding: 0;
    }
    .live-search__input {
        font-size: 1.3125rem;
        padding-left: 0rem;
    }
    .search-hero__title{
        font-size: 2.9375rem;
    }
    .page-sidebar-none{
        padding: 0 1rem;
    }
}
