/* GLOBAL FONT */
body {
    font-family: Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.section-heading,
.hero-title,
.product-title,
.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

/*Contact form 7 css here*/
/* Remove unwanted br */
.wpcf7 br {
    display: none;
}

/* Remove default CF7 error spacing */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
}

/* Wrapper */
.newsletter-wrapper {
    margin-top: 15px;
}

/* Email + Button row */
.newsletter-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

/* Email field */
.newsletter-input {
    flex: 1;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Button */
.newsletter-btn {
    width: 55px;
    height: 50px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.newsletter-btn:hover {
    background: #333;
}

/* Select dropdown */
.newsletter-select {
    width: 100%;
    height: 45px;
    padding: 0 12px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/* Checkbox row */
.newsletter-consent {
    font-size: 13px;
}

.newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.newsletter-consent input {
    margin-top: 4px;
}


/*Header all css*/
.navbar-nav .menu-item {
    list-style: none;
}

.navbar-nav .menu-item a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.navbar-nav .menu-item a:hover {
    color: #555;
}

.navbar-brand img {
    width:120px;
    height: 60px;
    object-fit:cover;
}


/* TRANSPARENT DEFAULT */
.main-header {
    background: #00000024;
    transition: all 0.3s ease;
    padding:0;
    z-index: 9999;
}

/* Menu Links White */
.main-header .navbar-nav a {
    color: #fff;
    font-weight: 300;
    font-size:19px;
    letter-spacing:0.5px;
    font-family: "Bebas Neue", sans-serif !important;
}

.main-header .navbar-nav a:hover {
    color: #ddd;
}

/* Contact Button */
.header-btn {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
}

/* SCROLL STATE */
.main-header.scrolled {
    background: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.main-header.scrolled .navbar-nav a {
    color: #fff;
}

.main-header.scrolled .header-btn {
    background: #000;
    color: #fff;
}

.header-cart{
    position:relative;
    margin-left:15px;
    font-size:24px;
    color:#000;
    text-decoration:none;
}

.header-cart img{
    width:26px;
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-8px;
    background:#000;
    color:#fff;
    font-size:10px;
    padding:3px 6px;
    border-radius:50%;
}


/*Header all css end here*/



/*home page css start */

.hero-banner {
    position: relative;
    height: 119vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #010923, transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
}
a.hero-btn{
    background: black;
    border: black;
    color: white;
    padding: 12px 35px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}
/*Slider home css */
.slider-progress{
    width:200px;
    height:3px;
    background:#ddd;
    margin:0 auto 30px;
    position:relative;
}
.slider-progress .progress-bar{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0;
    background:#000;
    transition:width .3s;
}
.single-slide-wrapper .product-item{
    max-width:320px;
}
.products-slider .owl-stage{
    display:flex;
    justify-content:center;
}

.products-slider .owl-item{
    display:flex;
    justify-content:center;
}

.product-item{
    max-width:320px;
    width:100%;
}
/* PRODUCTS */
.section-heading {
    font-weight: 700;
}
.playlist-banner {
    background-position: center;
    background-size: cover;
}

/* ===============================
   PLAYLIST SECTION
=================================*/

.playlist-section {
    padding: 80px 0;
    background: #fff;
}

/* Banner Wrapper */
.playlist-banner {
    position: relative;
    min-height: 500px;
    width: 100%;
    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
}

/* Dark Overlay */
.playlist-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

/* Content Wrapper */
.playlist-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    color: #fff;
}

/* Heading */
.playlist-content h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 83%;
    margin: 0 auto 0px;
}

/* Button */
.playlist-content .btn {
    display: inline-block;
    padding: 14px 30px !important;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.playlist-content .btn:hover {
    transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {

    .playlist-banner {
        justify-content: center;
        padding: 40px;
        text-align: center;
    }

    .playlist-content {
        margin: 0 auto;
    }

    .playlist-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .playlist-section {
        padding: 50px 0;
    }

    .playlist-banner {
        min-height: 400px;
        padding: 25px;
    }

    .playlist-content h2 {
        font-size: 32px;
    }

    .playlist-content .btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}



/* =========================
   SINGLE PRODUCT SECTION
========================= */

.single-product-section {
    background: #f3f3f3;
    padding: 100px 0;
}

/* Layout */
.single-product-section .row {
    align-items: center;
}

/* LEFT SIDE GALLERY */
.product-main-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-main-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    background: #fff;
    padding: 20px;
}

/* Thumbnails */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-thumbs .thumb {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbs .thumb.active,
.product-thumbs .thumb:hover {
    opacity: 1;
    border: 2px solid #000;
}

/* RIGHT SIDE */
.product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.product-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 500;
}
/* Quantity */
.quantity-wrapper {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    width: 170px;
    background: #000;
}

.qty-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 42px;
    font-size: 20px;
    padding: 0 15px;
    cursor: pointer;
}

.qty-btn:hover {
    background: #222;
}

.qty-input {
    width: 70px;
    text-align: center;
    border: none;
    height: 45px;
    font-weight: 600;
    font-size: 16px;
    outline: none;
}

/* Add to cart */
.add-cart-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.add-cart-btn:hover {
    background: #111;
}


.club-card {
    position: relative;
    height: 380px;
    /*border-radius: 10px;*/
    overflow: hidden;
    display: block;
    
}

/* Video full cover */
.club-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Slight dark overlay */
.club-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 2;
}

/* Bottom bar */
.club-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 3;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    border-top: 2px solid #fff;
}
.club-section {
    padding: 100px 0;
}





/*home page css end */

/* =========================================
   FOOTER MAIN
========================================= */

.main-footer {
    background: #f3f3f3;
    padding: 90px 0 40px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-top {
    margin-bottom: 40px;
}

/* =========================================
   FOOTER TITLES
========================================= */

.footer-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social a {
    font-size: 48px;
    color: #000;
    margin-right: 30px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter-box {
    display: flex;
    margin-bottom: 20px;
    max-width: 380px;
}

.newsletter-box input {
    flex: 1;
    border: 1px solid #000;
    background: transparent;
    padding: 10px;
    outline: none;
}

.newsletter-box button {
    width: 55px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #000;
    color: #fff;
}

/* =========================================
   COUNTRY SELECT
========================================= */

.country-select {
    width: 100%;
    max-width: 380px;
    padding: 10px;
    border: 1px solid #000;
    background: transparent;
    margin-bottom: 15px;
}

/* =========================================
   CHECKBOX TEXT
========================================= */

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #333;
    max-width: 380px;
}

.checkbox-wrapper input {
    margin-top: 4px;
}

/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #000;
}

/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 50px 0 25px;
}

/* =========================================
   BOTTOM COPYRIGHT
========================================= */

.footer-bottom {
    font-size: 14px;
    color: #000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .main-footer {
        padding: 70px 0 30px;
    }

    .footer-top .col-lg-4 {
        margin-bottom: 40px;
    }

    .footer-social a {
        font-size: 36px;
    }

    .newsletter-box,
    .country-select,
    .checkbox-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .footer-title {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


/*Product page css start */


/*prduct page css end*/


/*about us css start*/
.about-section {
    background: #f3f3f3;
    padding: 70px 0;
}

.about-wrapper {
    max-width: 700px;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

.about-highlight {
    font-weight: 600;
    margin-top: 25px;
}

.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-transform:uppercase;
    transition: 0.3s ease;
}
.about-content {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 26px;
}
.about-btn:hover {
    background: #000;
    color: #fff;
}

/*about us css end*/

/*music css start*/
.playlist-section-music {
    margin: 0;
    padding: 0;
}

.playlist-banner-music {
    position: relative;
    height: 100vh;
    width: 100%;
    /*background: url('https://hireaiexpert.com/coolcloth/wp-content/uploads/2026/02/Playlist_banner_notext.webp') center/cover no-repeat;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8%;
    overflow: hidden;
}

/* Dark overlay */
.playlist-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* Text content */
.playlist-content-music {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    text-align:center;
}

.playlist-content-music h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.playlist-content-music .btn {
    font-weight: 600;
}
.playlist-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}


/* CARD */
.club-card{
    background:#fff;
    padding:0px;
    /*border-radius:16px;*/
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.club-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* IMAGE */
.club-img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    margin:0;
    border-radius:0;         
}

/* TITLE */
.club-title{
    margin-top:12px;
}

/* ===== MUSIC CARD BUTTON AREA ===== */

.club-bottom{
    background:#000;
    /*display:flex;*/
    flex-direction:column; 
    gap:4px;
}

/* FULL WIDTH BUTTON */
.club-btn{
    display:block;
    width:100%;
    padding:10px 20px;    
    border-radius:0;       
    font-size:15px;
    font-weight:600;
    text-align:center;
    text-decoration:none;
    transition:.3s ease;
    letter-spacing:.5px;
}

/* YouTube Button */
.yt-btn{
    background:transparent;  
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
}

/* Spotify Button */
.sp-btn{
    background:transparent;  
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
}

/* Hover */
.club-btn:hover{
    opacity:.85;
    transform:translateY(-2px);
    color: #000;
    background: #fff;
}

/*music css end*/





/*clening shorts*/
.hero-banner-cleaning{
    position:relative;
}
.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:-1;
}


/*checkout page css here 25022026*/
.checkout-grid{
    position:relative;
    overflow:hidden;
}

.checkout-left .checkout-section{
    background:#fff;
    padding:30px;
    margin-bottom:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.order-summary{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    position:sticky;
    top:120px;
        height: 100vh;
    overflow: overlay;
}

.section-title{
    font-weight:600;
    margin-bottom:20px;
}


.woocommerce-page.woocommerce-checkout form #order_review{
    width: 100%;
}
div#order_review{
    padding: 0px 1em !important;
}
.hero-banner-cleaning .row {
    display: flex;
    align-items: center;
}

/* Reverse Layout */
.hero-banner-cleaning.reverse-row .row {
    flex-direction: row-reverse;
}

/* Mobile Safe */
@media(max-width: 768px){
    .hero-banner-cleaning .row {
        flex-direction: column !important;
        text-align: center;
    }
}
/*cart page css here 25022026*/
/* CART PAGE PREMIUM */

.cart-card{
    background:#fff;
    padding:20px;
    margin-bottom:18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    gap:20px;
}

.cart-thumb img{
    width:90px;
    border-radius:10px;
}

.cart-info h5{
    margin-bottom:5px;
    font-size:18px;
}

.cart-price{
    color:#777;
}

.cart-qty input{
    width:70px;
    padding:8px;
    border-radius:8px;
    border:1px solid #ddd;
}

.cart-total{
    font-weight:600;
}

.cart-remove a{
    font-size:26px;
    text-decoration:none;
    color:#000;
}

.cart-summary{
    position:sticky;
    top:120px;
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.summary-row.total{
    font-size:18px;
    font-weight:600;
}

.empty-cart{
    padding:60px 0;
}


/*main shop page cs*/

/* ================================
   SHOP BANNER
================================ */

.shop-banner{
    position:relative;
    height:50vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
}

.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.banner-content h1{
    font-size:48px;
    font-weight:700;
}


/* ================================
   PRODUCT CARD
================================ */

.product-card{
    background:#fff;
    padding:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    margin-bottom:15px;
}

.product-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:8px;
}

.product-price{
    font-weight:600;
    margin-bottom:15px;
}

.product-btn-wrap .button{
    background:#000 !important;
    color:#fff !important;
    border-radius:0;
    padding:10px 20px;
}

/* ================================
   PAGINATION
================================ */

.shop-pagination a{
    margin:0 5px;
    padding:8px 14px;
    border:1px solid #000;
    color:#000;
    text-decoration:none;
}

.shop-pagination .current{
    background:#000;
    color:#fff;
}

/*single product page css here 25022026*/

.product-thumbs{
    width:90px;
}

.product-thumbs img{
    width:100%;
    margin-bottom:10px;
    cursor:pointer;
    border-radius:8px;
    opacity:.6;
}

.product-thumbs img.active{
    opacity:1;
    border:2px solid #000;
}

.product-main-image img{
    border-radius:12px;
}

.product-title{
    font-size:32px;
    margin-bottom:10px;
}

.product-price{
    font-size:22px;
    margin-bottom:15px;
}

.trust-block p{
    margin-bottom:6px;
    font-size:14px;
}

.product-banner{
    position:relative;
    height:420px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.banner-content{
    position:relative;
    color:#fff;
}

.banner-content h1{
    font-size:42px;
    margin-bottom:10px;
}

.breadcrumb-wrap .woocommerce-breadcrumb{
    color:#fff;
}

.breadcrumb-wrap a{
    color:#fff;
    opacity:.8;
}
/* SWIPER PREMIUM ARROWS */

.pdp-slider .swiper-button-next,
.pdp-slider .swiper-button-prev {
    width:50px;
    height:50px;
    background:rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border-radius:50%;
    transition:all .3s ease;
}

.pdp-slider .swiper-button-next::after,
.pdp-slider .swiper-button-prev::after {
    font-size:18px;
    color:#fff;
    font-weight:600;
}

.pdp-slider .swiper-button-next:hover,
.pdp-slider .swiper-button-prev:hover {
    background:#000;
    transform:scale(1.1);
}

/* ===== PREMIUM PDP ADD TO CART ===== */

.single-product-page .product-title {
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.single-product-page .product-price {
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
}

.single-product-page .product-desc {
    font-size:15px;
    line-height:1.6;
    margin-bottom:30px;
    max-width:500px;
}

/* CART FORM LAYOUT */
.single-product-page form.cart {
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

/* QUANTITY PILL */
.single-product-page .quantity {
    border:1px solid #ddd;
    border-radius:50px;
    padding:6px 10px;
    display:flex;
    align-items:center;
    background:#fff;
}

.single-product-page .quantity input.qty {
    border:none;
    width:50px;
    text-align:center;
    font-weight:600;
    font-size:16px;
    background:transparent;
}

.single-product-page .quantity input.qty:focus {
    outline:none;
}

/* ADD TO CART BUTTON */
.single-product-page .single_add_to_cart_button {
    background:#000 !important;
    color:#fff !important;
    border:none !important;
    padding:14px 40px !important;
    border-radius:50px !important;
    font-weight:600;
    letter-spacing:.5px;
    transition:all .3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.single-product-page .single_add_to_cart_button:hover {
    background:#222 !important;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,0.2);
}


/* ===== PREMIUM PRODUCT TABS ===== */

.single-product-page .woocommerce-tabs {
    margin-top: 60px;
}

/* TAB NAV */
.single-product-page .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    padding: 0;
    margin-bottom: 30px;
}

.single-product-page .woocommerce-tabs ul.tabs li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.single-product-page .woocommerce-tabs ul.tabs li a {
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 12px;
    display: inline-block;
    color: #888;
    transition: 0.3s ease;
}

.single-product-page .woocommerce-tabs ul.tabs li.active a,
.single-product-page .woocommerce-tabs ul.tabs li a:hover {
    color: #000;
    border-bottom: 2px solid #000;
}

/* TAB CONTENT */
.single-product-page .woocommerce-tabs .panel {
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 800px;
}

/* ===============================
   PREMIUM RELATED PRODUCTS
================================ */

.single-product-page .related {
    margin-top: 90px;
}

/* Section Title */
.single-product-page .related h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: .5px;
}

/* Grid Layout - Fixed 3 Column */
.single-product-page .related ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 0;
    margin: 0;
}

/* Remove default Woo styles */
.single-product-page .related ul.products li.product {
    list-style: none;
    margin: 0;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effect */
.single-product-page .related ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* IMAGE SIZE CONTROL */
.single-product-page .related ul.products li.product img {
    width: 100%;
    height: 200px;          /* Control height here */
    object-fit: contain;    /* Keep product fully visible */
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Title */
.single-product-page .related ul.products li.product h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Price */
.single-product-page .related ul.products li.product .price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

/* Add to Cart Button */
.single-product-page .related ul.products li.product .button {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 13px;
    transition: .3s ease;
}

.single-product-page .related ul.products li.product .button:hover {
    background: #222 !important;
}
@media(max-width: 768px){
    .single-product-page .related ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .single-product-page .related ul.products {
        grid-template-columns: 1fr;
    }
}
/*Wishlist page css here 26022026*/

/* HERO */
.wishlist-hero{
    position:relative;
    min-height:85vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:48px;
    margin-bottom:10px;
}

.hero-content p{
    margin-bottom:25px;
}

/* FORM */
.wishlist-form-wrap{
    max-width:400px;
    margin:auto;
}

/* PREVIEW */
/* SECTION BG */
.wishlist-preview{
    background:#f7f7f7;
}

/* OWL ITEM FIX */
.wishlist-slider .owl-item{
    display:flex;
}
/*  2 item center fix */
.wishlist-slider.two-items .owl-stage{
    display:flex;
    justify-content:center;
}

/* CARD */
.wishlist-img{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.wishlist-img img{
    max-height:100%;
    width:auto;
}
.wishlist-card h5{
    margin-top:auto;
}
.wishlist-card{
    position: relative;
    width:100%;
    background:#fff;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}
.coming-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#000;
    color:#fff;
    font-size:11px;
    padding:6px 12px;
    border-radius:30px;
    z-index:2;
}

.countdown-badge{
    position:absolute;
    top:12px;
    right:12px;
    background:#f0f0f0;
    font-size:11px;
    padding:6px 12px;
    border-radius:30px;
    z-index:2;
}

/* IMAGE */
.wishlist-card img{
    width:100%;
    border-radius:14px;
    transition:.4s;
}

/* TITLE */
.wishlist-card h5{
    margin-top:12px;
    font-size:14px;
    letter-spacing:1px;
}

/* HOVER */
.wishlist-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.wishlist-card:hover img{
    transform:scale(1.05);
}
.form-card{
    max-width:500px;
    margin:-80px auto 0;
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
    position:relative;
    z-index:2;
}

.form-card h3{
    margin-bottom:10px;
}

.form-card p{
    margin-bottom:20px;
    color:#777;
}

/* =========================
   CF7 PREMIUM INLINE FORM
========================= */

/* FORM RESET */
.wpcf7 form{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* REMOVE DEFAULT P MARGIN */
.wpcf7 form p{
    margin:0;
}

/*  LABEL RESET */
.wpcf7 form label{
    display:block;
    width:100%;
    font-size:14px;
    color:#777;
}

/*  EMAIL WRAP FIX */
.wpcf7-form-control-wrap{
    display:block;
}

/*  INPUT */
.wpcf7 input[type="email"]{
    width:320px;
    padding:16px 20px;
    /*border-radius:50px;*/
    border:1px solid #e5e5e5;
    font-size:15px;
    transition:.25s;
    background:#fafafa;
    outline:none;
}

/*  INPUT FOCUS */
.wpcf7 input[type="email"]:focus{
    border-color:#000;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/*  BUTTON */
.wpcf7 input[type="submit"]{
    padding:16px 32px;
    border:none;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    background:#fff;
    color:#000;
    transition:.25s;
}

/*  BUTTON HOVER */
.wpcf7 input[type="submit"]:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* SPINNER ALIGN */
.wpcf7-spinner{
    margin-left:10px;
}

/*  RESPONSE */
.wpcf7-response-output{
    border:none !important;
    margin-top:15px !important;
    text-align:center;
}

/*  MOBILE */
@media(max-width:600px){

    .wpcf7 form{
        flex-direction:column;
    }

    .wpcf7 input[type="email"]{
        width:100%;
    }
}



/*page under custruction*/

/* UNDER CONSTRUCTION PAGE */

.under-construction-page {
    margin:0;
    padding:0;
}

.uc-wrapper {
    height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#000;
    color:#fff;
    padding:20px;
}

.uc-content {
    max-width:600px;
}

.uc-content h1 {
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;
}

.uc-content p {
    font-size:18px;
    opacity:.8;
    margin-bottom:40px;
}

.uc-btn {
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    background:#fff;
    color:#000;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.uc-btn:hover {
    background:#ddd;
}
.under-construction-page .customclass p br {
    display: none;
}
.under-construction-page .customclass p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.under-construction-page .wpcf7-email {
    height: 45px;
    padding: 0 15px;
    border-radius: 6px;
    border: none;
    width: 280px;
}

.under-construction-page .wpcf7-submit {
    height: 45px;
    padding: 0 25px;
    border-radius: 6px;
    border: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
}

.under-construction-page .wpcf7-submit:hover {
    background: #ddd;
}
/* SUBMIT BUTTON PREMIUM STYLE */

.under-construction-page .wpcf7-submit {
    height: 48px;
    padding: 0 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #000;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

/* HOVER EFFECT */
.under-construction-page .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
    background: #ffffff;
}

/* CLICK EFFECT */
.under-construction-page .wpcf7-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(255,255,255,0.2);
}



/*Contact uss css */

/* ===============================
   CONTACT HERO
================================ */

.contact-hero{
    background: linear-gradient(135deg,#1f4bb5,#1a3f9a);
    padding:120px 0;
    color:#fff;
}

.contact-left h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-left p{
    font-size:18px;
    opacity:.9;
    margin-bottom:30px;
    max-width:520px;
}

.contact-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.contact-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* Primary Button */
.btn-primary-custom{
    background:#fff;
    color:#1f4bb5;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
}

/* Outline Button */
.btn-outline-custom{
    border:1px solid #fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#1f4bb5;
}

.contact-right img{
    width:100%;
    border-radius:15px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:991px){

.contact-hero{
    padding:80px 0;
}

.contact-left h1{
    font-size:40px;
}

.contact-right{
    margin-top:40px;
}
}

/* ===============================
   CONTACT OPTIONS SECTION
================================ */

.contact-options{
    padding:100px 0;
    background:#f8f9fc;
}

.section-heading h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.section-heading p{
    color:#666;
    max-width:600px;
    margin:0 auto;
}

/* CARD */
.contact-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s ease;
    height:100%;
}

.contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* ICON */
.contact-icon{
    width:55px;
    height:55px;
    background:#e9efff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#1f4bb5;
    margin-bottom:20px;
}

/* TEXT */
.contact-card h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.contact-card p{
    font-size:14px;
    color:#666;
    margin-bottom:15px;
}

/* LINKS */
.contact-link{
    font-weight:600;
    color:#1f4bb5;
    text-decoration:none;
    display:inline-block;
    margin-top:5px;
}

.contact-link:hover{
    text-decoration:underline;
}

.contact-hours{
    display:block;
    margin-top:10px;
    font-size:13px;
    color:#777;
}

.contact-address{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){

.contact-options{
    padding:70px 0;
}

.section-heading h2{
    font-size:28px;
}
}
/* ===============================
   CONTACT FORM SECTION
================================ */

.contact-form-section{
    padding:100px 0;
    background:#f8f9fc;
}

.form-wrapper{
    max-width:750px;
    margin:40px auto 0;
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

/* FORM GROUP */
.contact-form-section .form-group{
    margin-bottom:20px;
}

/* LABEL */
.contact-form-section label{
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
}

/* INPUTS */
.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    transition:.3s;
    background:#fff;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus{
    border-color:#1f4bb5;
    outline:none;
    box-shadow:0 0 0 3px rgba(31,75,181,.1);
}

/* TEXTAREA */
.contact-form-section textarea{
    min-height:140px;
    resize:none;
}

/* SUBMIT BUTTON */
.contact-form-section .form-submit{
    margin-top:20px;
}

.contact-form-section input[type="submit"]{
    background:#1f4bb5;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form-section input[type="submit"]:hover{
    background:#163b8f;
    transform:translateY(-2px);
}

/* CF7 RESPONSE */
.wpcf7-response-output{
    margin-top:15px !important;
    border-radius:8px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){

.contact-form-section{
    padding:70px 0;
}

.form-wrapper{
    padding:25px;
}
}
/* ===============================
   TRUST SECTION
================================ */

.contact-trust{
    padding:100px 0;
    background:#f8f9fc;
}

/* IMAGE */
.trust-image{
    margin:40px auto 0;
    max-width:900px;
}

.trust-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* CARD */
.trust-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s ease;
    height:100%;
}

.trust-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* ICON */
.trust-icon{
    width:45px;
    height:45px;
    background:#e9efff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1f4bb5;
    font-size:18px;
    margin-bottom:15px;
}

/* TEXT */
.trust-card h5{
    font-size:16px;
    font-weight:600;
    margin-bottom:8px;
}

.trust-card p{
    font-size:13px;
    color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){

.contact-trust{
    padding:70px 0;
}

.trust-image{
    margin-top:30px;
}
}
/* ===============================
   FAQ SECTION
================================ */

.contact-faq{
    padding:100px 0;
    background:#f8f9fc;
}

/* IMAGE */
.faq-image{
    margin:40px auto;
    max-width:900px;
}

.faq-image img{
    width:100%;
    border-radius:20px;
}

/* WRAPPER */
.faq-wrapper{
    max-width:800px;
    margin:0 auto;
}

/* ITEM */
.faq-item{
    margin-bottom:15px;
}

/* QUESTION */
.faq-question{
    width:100%;
    background:#fff;
    border:1px solid #eee;
    padding:18px 20px;
    border-radius:12px;
    text-align:left;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.faq-question:hover{
    border-color:#1f4bb5;
}

/* ICON */
.faq-icon{
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

/* ANSWER */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fff;
    border-radius:0 0 12px 12px;
    padding:0 20px;
}

.faq-answer p{
    font-size:14px;
    color:#666;
    padding:15px 0;
}

/* ===============================
   FINAL CTA SECTION
================================ */

.contact-final-cta{
    padding:90px 0;
    background:#1f4bb5;
    color:#fff;
}

.contact-final-cta h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-final-cta p{
    max-width:600px;
    margin:0 auto 30px;
    opacity:.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Primary */
.cta-primary{
    background:#fff;
    color:#1f4bb5;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.cta-primary:hover{
    transform:translateY(-3px);
}

/* Outline */
.cta-outline{
    border:1px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.cta-outline:hover{
    background:#fff;
    color:#1f4bb5;
}

@media(max-width:768px){

.contact-final-cta{
    padding:70px 0;
}

.contact-final-cta h2{
    font-size:28px;
}
}


/*Refund Policy css*/

/* ===============================
   REFUND HERO
================================ */

.refund-hero{
    position:relative;
    padding:140px 0;
    background:url('YOUR-BACKGROUND-IMAGE-URL') center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}

/* Dark Overlay */
.refund-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* Content */
.refund-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

/* Badge */
.refund-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
    backdrop-filter:blur(5px);
}

/* Title */
.refund-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

/* Description */
.refund-hero p{
    font-size:18px;
    opacity:.9;
    margin-bottom:30px;
}

/* Button */
.refund-btn{
    background:#1f4bb5;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.refund-btn:hover{
    background:#163b8f;
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:768px){

.refund-hero{
    padding:100px 0;
}

.refund-hero h1{
    font-size:34px;
}
}

/* ===============================
   REFUND PRIORITY SECTION
================================ */

.refund-priority{
    padding:120px 0;
    background:#f8f9fc;
}

/* ICON BOX */
.refund-icon-box{
    width:90px;
    height:90px;
    background:#e9efff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1f4bb5;
    font-size:32px;
    margin-bottom:25px;
}

/* HEADING */
.refund-text h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

/* PARAGRAPHS */
.refund-text p{
    font-size:16px;
    color:#555;
    margin-bottom:18px;
    line-height:1.7;
}

/* IMAGE */
.refund-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* RESPONSIVE */
@media(max-width:991px){

.refund-priority{
    padding:80px 0;
}

.refund-image{
    margin-top:40px;
}

.refund-text h2{
    font-size:28px;
}
}

/* ===============================
   REFUND DETAILS SECTION
================================ */

.refund-details{
    padding:120px 0;
    background:#f8f9fc;
}

/* Card */
.refund-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    height:100%;
    transition:.3s ease;
}

.refund-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* Headings */
.refund-card h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

/* Lists */
.refund-card ul,
.refund-card ol{
    padding-left:18px;
    margin:0;
}

.refund-card li{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
    line-height:1.6;
}

/* Responsive */
@media(max-width:991px){

.refund-details{
    padding:80px 0;
}
}

/* ===============================
   REFUND STEPS SECTION
================================ */

.refund-steps{
    padding:120px 0;
    background:#ffffff;
}

/* Titles */
.steps-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.steps-subtitle{
    color:#666;
    margin-bottom:35px;
}

/* Step Item */
.step-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

/* Number Circle */
.step-number{
    width:42px;
    height:42px;
    background:#1f4bb5;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

/* Step Content */
.step-content h6{
    font-weight:600;
    margin-bottom:5px;
}

.step-content p{
    font-size:14px;
    color:#666;
    margin:0;
}

/* Assistance Card */
.refund-assist{
    margin-top:35px;
    padding:20px;
    border-radius:15px;
    background:#f4f6fb;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.assist-btn{
    background:#1f4bb5;
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.assist-btn:hover{
    background:#163b8f;
}

/* Image */
.refund-steps-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* Responsive */
@media(max-width:991px){

.refund-steps{
    padding:80px 0;
}

.refund-steps-image{
    margin-top:40px;
}

.steps-title{
    font-size:28px;
}

.refund-assist{
    flex-direction:column;
    align-items:flex-start;
}
}
/* ===============================
   REFUND FAQ SECTION
================================ */

.refund-faq{
    padding:120px 0;
    background:#f8f9fc;
}

/* Accordion Styling */
.custom-refund-accordion .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.custom-refund-accordion .accordion-button{
    background:#fff;
    font-weight:600;
    padding:20px;
    border:none;
    box-shadow:none;
}

.custom-refund-accordion .accordion-button:not(.collapsed){
    background:#1f4bb5;
    color:#fff;
}

.custom-refund-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-refund-accordion .accordion-body{
    background:#ffffff;
    padding:20px;
    font-size:14px;
    color:#555;
}

/* Remove default arrow rotation color glitch */
.custom-refund-accordion .accordion-button::after{
    filter:invert(0);
}

.custom-refund-accordion .accordion-button:not(.collapsed)::after{
    filter:invert(1);
}

/* Responsive */
@media(max-width:991px){

.refund-faq{
    padding:80px 0;
}
}
/* ===============================
   REFUND CONFIDENCE SECTION
================================ */

.refund-confidence{
    padding:120px 0;
    background:linear-gradient(135deg,#1f4bb5,#3468d1);
    color:#fff;
}

/* Heading */
.confidence-heading h2{
    font-size:34px;
    font-weight:700;
}

.confidence-heading p{
    opacity:.9;
    margin-top:10px;
}

/* Card */
.confidence-card{
    text-align:center;
    padding:25px 15px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(6px);
    transition:.3s ease;
    height:100%;
}

.confidence-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.15);
}

/* Icon */
.icon-circle{
    width:55px;
    height:55px;
    margin:0 auto 15px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Text */
.confidence-card h6{
    font-weight:600;
    margin-bottom:8px;
}

.confidence-card p{
    font-size:13px;
    opacity:.85;
}

/* Bottom Images */
.confidence-img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* Responsive */
@media(max-width:991px){

.refund-confidence{
    padding:80px 0;
}

.confidence-heading h2{
    font-size:26px;
}
}

/*ay-css-12/02/26*/

.hero-content {
    height: 100%;
}
.hero-content .row {
    height: 100%;
}
.products-section h2 {
    color: #000;
}
.products-section  a.btn {
    padding: 14px 56px;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
}
input.qty-input {
    border-radius: 0 !important;
    font-weight: 600;
}
a.club-card {
    border-radius: 0 !important;
}
a.add-cart-btn:hover {
    background: #1c1c1c;
    color: #fff;
}
.newsletter-row p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-footer .newsletter-btn {
    padding-top: 15px !important;
    padding-right: 62px  !important;
    padding-bottom: 15px !important;
    padding-left: 62px  !important;
    font-weight: 500;
    font-size: 20px  !important;
    color: #000 !important;
    line-height: 16px !important;
    border: 1px solid #000 !important;
    background: transparent !important;
}
.main-footer .newsletter-input {
    border: 1px solid #000 !important;
    background: transparent !important;
    padding: 12px 20px !important;
    height: auto !important;
}
.main-footer .newsletter-select {
    width: 100%;
    margin-bottom: 0;
    border: 1px solid #000 !important;
    background: transparent !important;
    padding: 12px 20px !important;
    height: auto !important;
    max-width: 467px;
    font-size: 16px;
    font-weight: 600;
}
.main-footer .newsletter-row {
    margin-bottom: 0  !important;
}
.main-footer .newsletter-row p {
    margin-bottom: 5px !important;
}
.main-footer .newsletter-consent p span {
    font-size: 16px;
    max-width: 417px;
    font-weight: 600;
    color: #515050;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    display: block;
}
.main-footer .newsletter-consent p {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    display: block;
}
.main-footer input[type=checkbox], .wpcf7 input[type=radio] {
    margin: 4px 0px 0 0;
}
.main-footer .newsletter-consent {
    padding-left: 20px;
}
.main-footer .newsletter-wrapper p {
    margin-bottom: 5px;
}
.main-footer .social-icons a {
    display: inline-block;
    max-width: 50px;
    margin-right: 15px;
}
.main-footer .newsletter-btn {
    border-radius: 0 !important;
}
.main-footer .newsletter-row p {
    align-items: flex-start;
}
.main-footer .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
}
.footer-meta form.wpcf7-form.init{
        display: flex;
    flex-wrap: wrap;
    align-items: center;
     justify-content: left !important; 
    gap: 12px;
}
a.btn {
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 600;
}
.playlist-content-music h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 100%;
    margin: 0 auto 0px;
}
@media only screen and (max-width: 1024px) {
.hero-title {
    font-size: 56px;
}
}
@media only screen and (max-width: 767px) {
.hero-title {
    font-size: 54px;
}
button.navbar-toggler{
    background: #ffffffcf;
}
.hero-banner {
    height: 100vh;
}
.product-title {
    margin-top: 30px;
}
a.club-card {
    margin-bottom: 30px;
}
ul#menu-footer-menu-1 {
    margin-bottom: 32px;
}
.main-footer .newsletter-consent p span {
    font-size: 14px;
}
.main-footer .newsletter-consent {
    padding-left: 14px;
}
.main-footer .newsletter-select {
    width: 85%;
}
}

@media only screen and (max-width: 480px) {
.main-footer .newsletter-consent p span {
    max-width: 94%;
}
.main-footer input[type=checkbox], .wpcf7 input[type=radio] {
    height: 14px  !important;
    width: 14px !important;
    min-width: 14px !important;
}
}