/** Shopify CDN: Minification failed

Line 278:0 Unexpected "}"
Line 391:27 Expected identifier but found "/"
Line 392:21 Expected identifier but found "/"
Line 397:24 Expected identifier but found "/"

**/
/* Heading Font (Uniform Condensed) */
/* @font-face {
    font-family: 'Uniform_Condensed';
    src: url('Uniform-Condensed-Bold.woff2') format('woff2'),
       url('Uniform-Condensed-Bold.woff') format('woff');
    font-weight: normal;
}
 */
/* Body Font (Montserrat) */
/* @font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
 */
/* Now use the fonts in the rest of your CSS */

/* Define CSS Variables for colors */
:root {
    --primary-color: #5C2945; 
    --secondary-color: #FEF08B;
    --secondary-bg: #93D8E7;
    --background-color: #f4f4f4; 
    --button-bg : #BA3F6E;
    --text-color: #333;
    --heading-color: #2c3e50;
    --link-color: #2980b9;
    --border-color: #e0e0e0;
    
    /* Font Variables */
    --heading-font: 'UniformCondensed-Medium'; /* Heading font */
    --body-font: 'Montserrat', sans-serif; /* Body font */
    
    /* Spacing and sizing variables */
    --spacing-unit: 16px; /* Base spacing unit */
    --max-width: 1366px; /* Max width for main content */
}

/* Reset and Global Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font) !important;
    background-color: var(--background-color) !important;
    color: var(--primary-color ) !important;    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.container-wrapper {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: calc(2 * var(--spacing-unit));
}

.mb-2 {
    margin-bottom: calc(2 * var(--spacing-unit));
}

/* Headings */
h1, h2, h3, h4,h6 {
    font-family: var(--heading-font) !important;
   
    line-height: 1.5rem !important;
}
h4,h5 {
    font-family: var(--heading-font) !important;
    line-height: 1.8rem !important;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 35px !important;
}

h3 {
    font-size: 30px !important;
}
h4 {
    font-size: 25px !important;
}
h5 {
    font-size: 20px ;
}
h6 {
    font-size: 14px !important;
}

/* Links */
a {
    color: var(--button-bg);
    font-family: var(--body-font);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

a:hover {
    color: var(--primary-color);
}

/* Buttons */
button {
    background-color: var(--button-bg);
    color: white;
    border: none;
    padding: calc(0.5 * var(--spacing-unit)) calc(1 * var(--spacing-unit));
    cursor: pointer;
    font-family: var(--body-font);
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--secondary-color);
}

a.btn{
    background-color: var(--secondary-bg);
    color: var(--primary-color);
    border: none;
    padding: 6px 30px;
    font-family: var(--body-font);
    font-weight: 700;
    border-radius: 3px;
}

/* Inputs */
/* input,
textarea {
    padding: calc(0.5 * var(--spacing-unit));
    border: 1px solid var(--border-color);
    font-family: var(--body-font);
    font-size: 1rem;
    margin-bottom: calc(1 * var(--spacing-unit));
} */

/* input:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
} */
/* =================== Action Bar Styling ============================ */

#action-bar{
    background-color: var(--secondary-color);
}
#action-bar .content-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    gap: 40px;
  
}
#action-bar .content-wrap .desc h6{
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing:0 !important;
}
#action-bar .content-wrap a.btn{
  padding: 1px 30px;
}
/* ===================== Header Styling =========================  */
#step-header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

#step-header .logo{
    width: 20%;
}
#step-header .logo img {
    width: 100%;
    height: auto;
}

#step-header .steps {
    display: flex;
    width: 50%;
}

#step-header .step-list {
    display: flex;
    gap: 50px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}

#step-header .step-list li {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#step-header .step-list::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D4D4D4;
    position: absolute;
    top: 50%;
    z-index: -1;
}

#step-header .step-list .filled {
    background-color: var(--primary-color); /* Primary Color */
    color: white;
}

#step-header .step-list .filled a {
    color: white; 
}

#step-header .step-list .filled .tick {
    font-size: 14px;
}

#step-header .step-list .dashed {
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
    background-color: #8BB5BE;
}

#step-header .step-list .dashed a {
    color: var(--primary-color);
}

/* ============================ Shiiping Bar ======================= */
#shipping-bar{
    background-color: #277B9F;
    padding:10px 0px;
    text-align: center;
}
#shipping-bar h4{
    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}
}

/* ================================ Cooper Kits ================== */
#kits {
    margin: 30px 0px !important;
}
/* #kits{
    margin:30px 0px!important;    
} */
#kits .header-content h1{
    font-size: 30px!important;
    margin-bottom: 10px;
}
#kits .header-content.text-center{
    margin-top: 30px;
    line-height: 1.5;
    letter-spacing: 0px;
}
#kits .header-content p{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
#kits .header-content a{
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
}
#kits .blocks-layout{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
#kits .blocks-layout {
    line-height: 1.2!important;
    letter-spacing: 0!important;
}
#kits .blocks-layout .info-column{
    width: 53%;
}
#kits .blocks-layout .info-column .swiper {
    width: 100%;
    height: 100%;
}
#kits .blocks-layout .bundle-column .kits-header {
      padding: 7px 15px!important;
    
}

#kits .blocks-layout .info-column .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

#kits .blocks-layout .info-column .main-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}

#kits .blocks-layout .info-column .swiper-slide {
    background-size: cover;
    background-position: center;
}

#kits .blocks-layout .info-column .thumb-slider {
    padding: 10px 0;
    margin-top: 10px;
}

#kits .blocks-layout .info-column .thumb-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
}

/* #kits .blocks-layout .info-column .thumb-slider .swiper-wrapper{
    gap: 10px;
} */
#kits .blocks-layout .info-column .thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}
#kits .blocks-layout .info-column .text-wrapper{
    margin-top: 20px;
    width: 85%;
}
#kits .blocks-layout .info-column .text-wrapper > *{
    margin-bottom: 20px;
    list-style-type: none;
}
#kits .blocks-layout .info-column .text-wrapper p{
    font-weight: 700;
}
#kits .blocks-layout .info-column .text-wrapper p.note{
    color: var(--button-bg);
    font-style: italic;
}
#kits .blocks-layout .info-column .text-wrapper ul li{
    display: flex;
    gap: 10px;
    align-items:center;
    margin-bottom: 10px;
    font-weight: 700;
}
.text-wrapper ul {
    list-style-type: none; / Remove default bullets /
    padding-left: 0; / Remove left padding /
}

.text-wrapper ul li {
    position: relative;
    padding-left: 30px; / Adjust the left padding for the icon /
}

.text-wrapper ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #15bc11;
}
/* #kits .blocks-layout .info-column .text-wrapper ul li i{
    color: #15bc11;
} */

#kits .blocks-layout .bundle-column{
    width: 45%;
    background-color: var(--secondary-color)!important;
    border-radius: 40px;
    padding: 30px 20px;
}
#kits .blocks-layout .bundle-column .header-bundle {
    line-height: 1.5!important;
  letter-spacing: -0.4px!important;
}
bundle-column .header-bundle .text-center h5 {
    font-size: 20px !important;
}
#kits .bundle-column ts .blocks-layout .bundle-column .individual-kits{
    display: flex;
    box-shadow: 0px 1.37px 1.37px 0px #00000040;
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 40px auto;
}
.individual-kits-mob{
    display: none;
}
.individual-kits {
    display: flex!important;
    box-shadow: 0px 1.37px 1.37px 0px #00000040;
    position: relative;
    z-index: 2;
    width: 95%;
    margin: 40px auto;
}
#kits .blocks-layout .bundle-column .individual-kits .pd-box{
    width: 35%;
    background-color: #E1F6FF;    
    position: relative;
    text-align: center;
    padding: 0px 10px 10px 10px;
    border-radius: 5px 0px 0px 5px;
    line-height: 1.3 !important;
    letter-spacing: 0px !important;
}
#kits .blocks-layout .bundle-column .individual-kits .pd-box img{
    width: 85px;
    height: auto;
    margin-top: -20px;
    margin-bottom: 20px;
}
#kits .blocks-layout .bundle-column .individual-kits .pd-box .price{
    font-family: var(--body-font);
    font-weight: 700;
    margin-bottom: 10px;
}
#kits .blocks-layout .bundle-column .individual-kits .pd-box a{
    text-decoration: underline;
}
#kits .blocks-layout .bundle-column .individual-kits .kits-grid{
    width: 65%;    
}
#kits .blocks-layout .bundle-column .kits-header{
    padding: 3px 15px;
    background-color: var(--link-color);
    color: white;
    border-radius: 0px 5px 0px 0px;
    box-shadow: 0px 1.37px 1.37px 0px #00000040;
    position: relative;
}
#kits .blocks-layout .bundle-column .individual-kits .kits-product{
    background-color: #FFF9E8;
    padding: 15px;
    border-radius: 0px 0px 5px 0px;
    /* box-shadow: 0px 1.37px 1.37px 0px #00000040; */
}
#kits .blocks-layout .bundle-column .individual-kits .kits-product h6 {
    font-size: 14px !important;
    line-height: 1.5rem !important;
}

#kits .blocks-layout .bundle-column .kits-buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 5px 0px;
    
}
#kits .blocks-layout .bundle-column .kits-buttons button{
  width: 30%;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid var(--link-color);
  color: var(--link-color);
  /* font-weight: 700; */
  font-size: 13px;
  font-family: var(--heading-font);
  padding: 5px;
}
#kits .blocks-layout .bundle-column .kits-buttons button.active{
    background-color: var(--link-color);
    color: white;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .heading-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .heading-wrapper .divider{
    width: 28%;
    height: 3px;
    background-color: var(--primary-color);
    display: inline;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .heading-wrapper h5{
    font-size:20px!important;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-lists{
    margin-top: 20px;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item{
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary-bg);
    padding: 10px;
    border-radius: 10px;
    position: relative;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0px 1.37px 1.37px 0px #00000040;

}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .save{
    position: absolute;
    top: 0;
    left: 0;
    background: #FFD205;
    color: var(--primary-color);
    font-weight: bold;
    padding: 8px 23px 8px 10px;
    font-size: 14px;
    clip-path: polygon(0% 0%, 100% 0%, 34% 100%, 0% 100%);
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    width: 90px;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .save h6{
    line-height: normal;
    font-weight: 900;
    font-size: 16px;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .spacer{
    width: 15%;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-title, #kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-price{
    width: 40%;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-title h4{
    font-size: 21px!important;
    line-height:2rem!important;
    margin-bottom: 8px;
}

#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-title h5{
    font-size: 17px;
    margin-top: 8px;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-price .bundle-reg-price{
    color: var(--button-bg);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 19.6px;    
    text-decoration-line: line-through;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-price .bundle-sale-price{
    color: #006A0D;
    font-size: 24.05px;
    font-weight: 700;
}
.bundle-coupon-code{
    color: #006A0D;
    font-size: 13.07px;
    font-weight: 700;
    line-height: 15.93px;
    text-align: right;
}
#kits .blocks-layout .bundle-column .cooper-kit-bundles .bundle-item .bundle-select input{
    width: 15px;
    height: 15px;
    accent-color: var(--primary-color);
    clip-path: circle(40% at 50% 50%);
}
.submit-contaier{
    text-align: center;
}
.submit-contaier button{
    background: #BA3F6E;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 3.35px 3.35px 0px #00000040;
    font-family: var(--heading-font);
    font-size: 25.1px;
    width: 55%;
    text-transform: uppercase;
}
.modal {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    
}

.modal-content {
    padding: 20px;
    border-radius: 8px;
    position: relative;
    padding-top: 70px;
    position: relative;
    margin-top: -75px;
}
.modal-content .modal-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.modal-content .modal-header .header-img{
    width: 49%;
}
.modal-content .modal-header .header-img img{
    width: 100%;
    margin-bottom: 10px;
}
.modal-content .modal-header .header-heading{
    width: 49%;
    text-align: left;
}
.modal-content .modal-header .header-heading h3{
    font-size: 28px !important;
    padding-bottom: 3px;
}
.modal-content .modal-header .header-heading > * {
    line-height: 1 !important; 
    padding-top: 5px;
}
.modal-content p{
    font-style: italic !important;
    font-weight: 500 !important;
    line-height: 2.5rem !important;
}
.modal-content .modal-body{
    background: #F4EDFF;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}
.modal-body .feature-list{
    display: flex;
    flex-flow: column;
    gap: 25px;
}
.modal-body .feature-list .feature-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-body .feature-list .feature-item img{
  width: 10%;
  height: 100%;
}
.modal-body .feature-list .feature-item .feature-item-content{
  width: 85%;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.close {
  position: absolute;
  top: 52px;
  right: 18px;
  cursor: pointer;
  font-size: 40px;
  color: #BA3F6E;
  /* border: 6.78px solid #BA3F6E */
}


/* =========================== Footer ============================ */
footer {
  background-color: var(--link-color);
  color: white;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-flow: column;
  margin-top: 30px;
}
footer h4{
    font-family: var(--body-font);
    font-size: 25.14px;
    font-weight: 700;
    line-height: 30.64px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 15px;
}
footer p{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 22.98px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 15px;
}
footer a{
    border: 1.96px solid #0974A3;
    background: #2A8CB6;
    padding: 6px 30px;
    color: white;
    border-radius: 7px;

}
/* Cart Page cart footer design */
#cart-footer-cooper{
    padding: 20px;
    background-color: #fef08bb3;
    border-radius: 20px;
    border: 1px dashed #5D2943;
}
@media (min-width: 750px) {
    #cart-footer-cooper .totals {
        justify-content: space-around;
    }
}

#cart-footer-cooper .totals>h2{
  font-size: 1.6rem !important;
}
#cart-footer-cooper #checkout{
  background-color: #ba3f6ee6;
}
#cart-footer-cooper #checkout:hover{
  background-color: var(--button-bg);
}
#main-cart-items table.cart-items thead tr th{
  padding: 10px;
  background-color: #5C2946;
  color: white;
}
#main-cart-items table.cart-items thead tr th:first-child{
    border-radius: 5px 0px 0px 0px;
}
#main-cart-items table.cart-items thead tr th:last-child{
  border-radius: 0px 5px 0px 0px;
}
#main-cart-items table.cart-items tbody{
  background-color: var(--background-color);
}
#main-cart-items table.cart-items .cart-item td:first-child{
  padding-left:15px;
}
#main-cart-items table.cart-items .cart-item td:last-child{
  padding-right:15px;
}
#main-cart-items table.cart-items .cart-item:last-child td{
  padding-bottom:20px;
}

@media (max-width: 600px) {
  .modal-content .modal-header .header-heading > *{
    line-height: 3rem !important; 
  }
}