/*
Theme Name: Claue Child
Theme URI: http://www.janstudio.net/claue
Author: JanStudio
Author URI: http://www.janstudio.net
Description: The best woocommerce theme for online fashion store, furniture store, handemade store, organic store, wordpress personal portfolio, personal blog.
Template: claue
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: claue
Tags: one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

.woocommerce .woocommerce-form-register p:nth-of-type(2) {
    display: none !important;
}

/* Clean layout for login & register */
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
}

.phone-row input {
    width: 100%;
    margin-bottom: 10px;
}

.phone-row button {
    margin-top: 5px;
}

#loginOtpSection,
#registerOtpSection {
    margin-top: 10px;
}

/* ============================= */
/* FIX CLAUE LOGIN REGISTER GRID */
/* ============================= */

#customer_login {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 60px !important;
}

/* Force both columns equal */
#customer_login > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 50% !important;
}

/* Remove Claue float/grid system */
#customer_login .jas-col-md-6,
#customer_login .jas-col-sm-6,
#customer_login .jas-col-xs-12 {
    float: none !important;
}

/* Mobile Fix */
@media (max-width: 768px) {
    #customer_login {
        flex-direction: column !important;
    }

    #customer_login > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 100% !important;
    }
}

/* Clean Login Design */
#customer_login form {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
}

#customer_login input {
    height: 50px;
    border-radius: 6px;
}


.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
}


.popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-content{
    background:#fff;
    padding:25px;
    width:350px;
    border-radius:8px;
    text-align:center;
}

.popup-content input{
    width:100%;
    margin:8px 0;
    padding:8px;
}

.close-popup{
    float:right;
    cursor:pointer;
    font-size:20px;
}

.woocommerce-form-register {
    display:none !important;
}

.u-column2{
	display:none !important;
}

/* .otp-login-box{
    max-width:420px;
    margin:auto;
    padding:35px;
    border:1px solid #eee;
    border-radius:8px;
    background:#fff;
} */

.phone-input{
    display:flex;
    border:1px solid #ccc;
    border-radius:6px;
    overflow:hidden;
}

.phone-input span{
    padding:12px;
    background:#f5f5f5;
    border-right:1px solid #ccc;
}

.phone-input input{
    border:none;
    flex:1;
    padding:12px;
    outline:none;
}

#login_otp{
    width:100%;
    padding:12px;
    margin-top:15px;
    border:1px solid #ccc;
    border-radius:6px;
}

.otp-btn{
    width:100%;
    margin-top:20px;
    padding:12px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.otp-btn:hover{
    background:#333;
}

.otp-text{
    font-size:14px;
    margin-bottom:10px;
}

.resend{
    margin-top:15px;
    font-size:13px;
    text-align:center;
}

.btn-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 10px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.otp-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    padding: 0 !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .otp-input-container {
        gap: 8px;
        justify-content: center;
    }

    .otp-box {
        width: 42px !important;
        height: 48px !important;
        font-size: 20px !important;
        border-radius: 6px !important;
    }
}

.otp-box:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.otp-box:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/*----------------------------------------------------------------------------------------------  */

/* Fix overlapping product titles and images */
.products .product-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products .product-image {
    position: relative;
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Ensure image container maintains proper height */
.products .product-image > a.db {
    display: block;
    position: relative;
    padding-bottom: 100%; /* Creates square container */
    overflow: hidden;
}

.products .product-image > a.db img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures images fill container properly */
}

/* Product info section - ensure it stays below image */
.products .product-info {
    margin-top: 15px !important;
    position: relative;
    z-index: 1;
    background: #fff;
    padding-top: 10px;
}

/* Fix product title min-height for consistent alignment */
.products .product-title {
    min-height: 42px;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Ensure buttons stay inside image area */
.products .product-btn.pa {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    z-index: 2;
}

/* Price spacing */
.products .price {
    margin-top: 5px;
    display: block;
}

.jas-socials a, .header-text, .header__top .jas-action a {
   	margin-left: 50px;
}

/* ------------------------------------------------------------------------------------- */

/* ========================================
   FOOTER FIX - FONT & HEIGHT ALIGNMENT
   ======================================== */

/* Force consistent font across ALL footer widgets */
.footer-widgets,
.footer-widgets p,
.footer-widgets ul li a,
.footer-widgets h3,
.footer-widgets h4,
.footer-company-info p,
.widget_block h4,
.widget_block a,
.footer-social-text {
    font-family: inherit; /* inherits your theme font */
    -webkit-font-smoothing: antialiased;
	color: #fff !important;
}

.widget_block a:hover {
	color: #881337 !important;
}

/* Align all footer columns to the TOP */
.footer-widgets .jas-row {
    align-items: flex-start !important;
}

/* Fix: Column 1 logo — constrain it so it doesn't push content down */
.footer-widgets .jas-col-md-3:first-child .wp-block-image {
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 0;
}

.footer-widgets .jas-col-md-3:first-child .wp-block-image img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Add a fake top spacer to columns 2,3,4 to visually match logo height in col 1 */
/* Logo is ~50px + 15px margin = ~65px — adjust if your logo height differs */
.footer-widgets .jas-col-md-3:not(:first-child) h4,
.footer-widgets .jas-col-md-3:not(:first-child) h3 {
    margin-top: 65px; /* match this to your logo image height */
}

/* On mobile, remove that extra top margin */
@media (max-width: 991px) {
    .footer-widgets .jas-col-md-3:not(:first-child) h4,
    .footer-widgets .jas-col-md-3:not(:first-child) h3 {
        margin-top: 0;
    }
}

.footer-social-icons {
    display: flex;
/*     gap: 15px; */
    margin-top: 20px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     background: #333;
    color: #fff; */
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

/* Address block: icon sits top-left, text wraps beside it */
.footer-company-info p {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #666;
    font-size: 14px;
}

.footer-company-info p i {
    margin-right: 10px;
    margin-top: 3px;        /* nudges icon to align with first line of text */
    flex-shrink: 0;         /* prevents icon from shrinking */
    color: #fff;
    font-size: 15px;
    width: 16px;
    text-align: center;
}

/* Address text stays beside the icon — not below it */
.footer-company-info p br {
    display: block;         /* keeps line breaks working inside flex */
    content: "";
}

/* ========================================
   RELATED PRODUCTS - UNIFORM CARD HEIGHT FIX
   ======================================== */

/* Give the image wrapper a fixed height so all cards align */
.related.product-extra .product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 320px; /* Fixed height — adjust to your preference */
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Make the anchor fill the fixed-height container */
.related.product-extra .product-image > a.db {
    display: block;
    width: 100%;
    height: 100%;
}

/* Image fills the container with contain so full product shows */
.related.product-extra .product-image > a.db img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom !important; /* Feet stay grounded */
    display: block;
}

/* Product info sits consistently below every image */
.related.product-extra .product-info {
    margin-top: 12px !important;
    position: relative;
    z-index: 1;
    background: #fff;
    padding-top: 0;
}

/* Uniform title height so prices align too */
.related.product-extra .product-title {
    min-height: 42px;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* Price consistency */
.related.product-extra .price {
    margin-top: 4px;
    display: block;
}

/* Keep the hover buttons inside the image area */
.related.product-extra .product-btn.pa {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    z-index: 2;
}

/* Slide spacing */
.related.product-extra .slick-slide {
    margin-bottom: 30px !important;
}

/* ========================================
   REGISTRATION POPUP STYLING
   ======================================== */

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Popup Content */
.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

/* Popup Title */
.popup-content h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Form Group */
.popup-content .form-group {
    margin-bottom: 20px;
}

/* Labels */
.popup-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
	text-align:left;
}

/* Required Asterisk */
.popup-content .required {
    color: #ff0000;
    font-weight: bold;
}

/* Input Fields */
.popup-content input[type="text"],
.popup-content input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.popup-content input[type="text"]:focus,
.popup-content input[type="email"]:focus {
    outline: none;
    border-color: #333;
}

/* Button */
.popup-content button {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.popup-content button:hover {
    background: #000;
}

.popup-content button:disabled {
    background: #999;
    cursor: not-allowed;
}

/* Loading State */
.popup-content button.btn-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error Message */
.email-error {
    color: #ff0000;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .popup-content {
        padding: 30px 20px;
    }
    
    .popup-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* ========================================
   STICKY HEADER FIX - RUSHABH COLLECTION
   ======================================== */
/* ===============================
   Smooth Sticky Header - CSS Only
   =============================== */

.header__mid{
    position: sticky;
    top: 0;
    z-index: 98;
    background: #fff;

    transition: box-shadow .3s ease, transform .3s ease;
}

/* shadow when scrolling */
/* .header__mid.is-scrolled,
.header__mid:has(+ *) {
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
} */

.header__mid .jas-row{
    height: 90px;
    display: flex;
    align-items: center;
	justify-content: space-between
}
@media (max-width: 768px) {
   .header__mid .jas-row{
    	height: 70px;
	}
	#jas-header{
		height: 135px;
	}
}
/* 
.header__mid{
    transition: box-shadow .3s ease;
	transform: translate .5s ease;
}

body .header-sticky .header__mid{
    position: fixed !important;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.header__mid .jas-row{
	height: 80px;
} */
/* .header__mid {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: box-shadow 0.3s ease;
} */

/* body.header-is-sticky .header__mid {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
} */
/* 
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
} */


/* Force Carousel Container Width */
.rushabh-category-carousel-wrapper {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Ensure swiper doesn't overflow */
.rushabh-category-carousel {
    max-width: 100% !important;
    overflow: hidden !important;
}

.rushabh-category-carousel .swiper-container {
    max-width: 100% !important;
}

/* Responsive container widths */
@media (max-width: 1200px) {
    .rushabh-category-carousel-wrapper {
        max-width: 960px !important;
    }
}

@media (max-width: 992px) {
    .rushabh-category-carousel-wrapper {
        max-width: 720px !important;
    }
}

@media (max-width: 768px) {
    .rushabh-category-carousel-wrapper {
        max-width: 540px !important;
    }
}

@media (max-width: 576px) {
    .rushabh-category-carousel-wrapper {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.jas-ajax-load.tc.mt__40.mb__60 {
    margin-bottom: 40px !important;
}

.woocommerce-page .jas-wc.mb__60 {
    margin-bottom: 0 !important;
}

/* ========================================
   PROFILE STEP - NEW USER REGISTRATION
   ======================================== */

#profileStep {
    padding: 10px 0;
}

#profileStep p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

#profileStep label {
    display: block !important;
    width: 100% !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    margin-top: 15px;
    text-align: left !important;
}

#profileStep input[type="text"],
#profileStep input[type="email"] {
    display: block !important;
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    height: auto !important;
    margin: 0 !important;
}

#profileStep input[type="text"]:focus,
#profileStep input[type="email"]:focus {
    border-color: #333 !important;
}

#profileStep #completeRegBtn {
    display: block !important;
    width: 100% !important;
    margin-top: 20px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

#profileStep #completeRegBtn:hover {
    background: #333 !important;
}
#rev_slider_3_1_wrapper{
	top: -10px;
}
.jas-push-menu{
	z-index: 9999 !important;
}
.e-con-inner{
	padding-block-end: 0px !important;
        padding-block-start: 0px !important;
}
@media (max-width: 768px) {
   .header-text{
		margin-left: 0px;
	}
	.mobile-justify{
		justify-content: center;
	}
}


/* Quick View - Uniform Size for Single & Multiple Images */
body .mfp-content .jas-row {
    display: flex !important;
    align-items: stretch !important;
}

body .mfp-content .jas-col-md-7.jas-col-sm-6.jas-col-xs-12.pr {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f8f8 !important;
    padding: 20px !important;
}

body .mfp-content .jas-col-md-5.jas-col-sm-6.jas-col-xs-12 {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
    overflow-y: auto !important;
    padding: 20px !important;
}

/* Image container */
body .mfp-content .single-product-thumbnail {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

/* Slick slider - CRITICAL for multiple images */
body .mfp-content .p-thumb.images.jas-carousel {
    width: 100% !important;
    height: 85% !important;
}

body .mfp-content .slick-slider {
    height: 100% !important;
}

body .mfp-content .slick-list {
    height: 510px !important;
}

body .mfp-content .slick-track {
    height: 510px !important;
    display: flex !important;
    align-items: center !important;
}

body .mfp-content .slick-slide {
    height: 510px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body .mfp-content .slick-slide > div {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body .mfp-content .p-item,
body .mfp-content .woocommerce-product-gallery__image {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Images - properly contained */
body .mfp-content .single-product-thumbnail img,
body .mfp-content .p-thumb img,
body .mfp-content .slick-slide img,
body .mfp-content .p-item img {
    max-width: 100% !important;
    max-height: 480px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Slick navigation arrows */
body .mfp-content .slick-prev,
body .mfp-content .slick-next {
    z-index: 10 !important;
    width: 40px !important;
    height: 40px !important;
}

body .mfp-content .slick-prev {
    left: 10px !important;
}

body .mfp-content .slick-next {
    right: 10px !important;
}

/* Slick dots */
body .mfp-content .slick-dots {
    position: absolute !important;
    bottom: 10px !important;
    width: 100% !important;
    z-index: 10 !important;
}

/* Mobile */
@media (max-width: 991px) {
    body .mfp-content .jas-col-md-7,
    body .mfp-content .jas-col-md-5 {
        height: 450px !important;
        min-height: 450px !important;
    }
    
    body .mfp-content .slick-list,
    body .mfp-content .slick-track,
    body .mfp-content .slick-slide {
        height: 410px !important;
    }
    
    body .mfp-content img {
        max-height: 380px !important;
    }
}

/* Click to Call Popup */
.call-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.call-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.call-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.call-popup-close:hover {
    color: #333;
}

.call-popup-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.call-popup-icon i {
    font-size: 40px;
    color: #fff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.call-popup-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.call-popup-number {
    font-size: 28px;
    font-weight: bold;
    color: #25D366;
    margin: 15px 0 20px;
    letter-spacing: 1px;
}

.call-popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.call-popup-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
	
.call-popup-btn-cancel {
    flex: 1;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.call-popup-btn-call {
    background: #25D366;
    color: #fff;
}

.call-popup-btn-call:hover {
    background: #1fb854;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.call-popup-btn-whatsapp {
    background: #128C7E;
    color: #fff;
}

.call-popup-btn-whatsapp:hover {
    background: #0d6e61;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.call-popup-btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.call-popup-btn-cancel:hover {
    background: #e0e0e0;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .call-popup-number {
        font-size: 24px;
    }
    
    .call-popup-buttons {
        flex-direction: column;
    }
}

/* Email Popup - matches call popup style */
.email-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.email-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.email-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.email-popup-close:hover {
    color: #333;
}

.email-popup-icon {
    width: 80px;
    height: 80px;
    background: #D44638;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: emailPulse 2s infinite;
}

.email-popup-icon i {
    font-size: 36px;
    color: #fff;
}

@keyframes emailPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 70, 56, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 70, 56, 0);
    }
}

.email-popup-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.email-popup-address {
    font-size: 18px;
    font-weight: bold;
    color: #D44638;
    margin: 15px 0 20px;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.email-popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    align-items: stretch;
}

.email-popup-btn {
    flex: 1;
    padding: 14px 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1.2;
    color: #fff;
    min-height: 50px;
}

.email-popup-btn i {
    font-size: 16px;
    flex-shrink: 0;
}

.email-popup-btn-compose {
    background: #D44638;
}

.email-popup-btn-compose:hover {
    background: #b83228;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 70, 56, 0.3);
    color: #fff;
    text-decoration: none;
}

.email-popup-btn-gmail {
    background: #4285F4;
}

.email-popup-btn-gmail:hover {
    background: #2a6dd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    color: #fff;
    text-decoration: none;
}

.email-popup-btn-copy {
    background: #555;
}

.email-popup-btn-copy:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.email-popup-btn-cancel {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #f0f0f0;
    color: #666;
    min-height: 50px;
}

.email-popup-btn-cancel:hover {
    background: #e0e0e0;
}

.email-copy-toast {
    display: none;
    margin-top: 12px;
    background: #e6f4ea;
    color: #2d7a3a;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .email-popup-address {
        font-size: 15px;
    }

    .email-popup-buttons {
        flex-direction: column;
    }
}

.elementor-18 .elementor-element.elementor-element-135860b {
	background: #FFF0F2;
}
.elementor-18 .elementor-element.elementor-element-88c807a {
	background: #fdf6ee;
}

.navs-header{
	display: flex;
	align-items: center;
}
.header-contect{
	width: 100%;
	display: flex;
}
.wc-block-cart, .wc-block-checkout{
	color: #000 !important;
}
.wc-block-cart-items__header, .wc-block-cart__totals-title{
	font-size: 18px !important;
	font-weight: 500;
}
.wc-block-components-product-name{
	font-size: 16px !important;
	font-weight: 500;
}
.wc-block-components-formatted-money-amount, .wc-block-components-product-metadata, .wc-block-components-totals-wrapper{
	font-size: 14px !important;
	font-weight: 500;
	color: #000 !important;;
}
.wc-block-components-quantity-selector__button{
	font-size: 20px !important;
	font-weight: 500 !important;
}
.wc-block-components-quantity-selector__button--plus{
	opacity: 1 !important;
}
.components-quantity-selector__button:disabled{
	color: rgb(137 137 137) !important
}
.wc-block-cart__submit-button{
	border: 2px solid;
	border-radius: 50px;
	padding: 15px 25px;
	font-size: 15px;
	font-weight: 500;
}
.wc-block-cart__submit-button:hover{
	background: #881337;
	color: #fff;
}
.wc-block-components-address-form{
	color: #000 !important;
}
.wc-block-components-address-card, .wc-block-components-checkout-return-to-cart-button, .wc-block-components-radio-control__label, .wc-block-components-radio-control__secondary-label, .wc-block-components-address-form input{
	font-size: 15px !important;
}
.wc-block-components-checkout-place-order-button{
	padding: 10px 35px !important;	
}
.wc-block-components-order-summary-item__quantity{
	line-height: 0 !important;
}