a {
    text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| Product Card
|--------------------------------------------------------------------------
*/

.sw-product-card {
    transition: 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.sw-product-card:hover {
    transform: translateY(-5px);
}


/*
|--------------------------------------------------------------------------
| Product Image
|--------------------------------------------------------------------------
*/

.sw-product-image {
    position: relative;
    overflow: hidden;
}

.sw-product-image-link {
    display: block;
    position: relative;
}

.sw-main-image,
.sw-hover-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

/* Hover Image */

.sw-hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
}


/* Hover Effect Only If Gallery Image Exists */

.sw-product-image-link.has-hover-image:hover .sw-hover-image {
    opacity: 1;
    transform: scale(1.05);
}

.sw-product-image-link.has-hover-image:hover .sw-main-image {
    opacity: 0;
    transform: scale(1.05);
}


/*
|--------------------------------------------------------------------------
| Sale Badge
|--------------------------------------------------------------------------
*/

.sw-sale-badge {
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 50px;
}


/*
|--------------------------------------------------------------------------
| Stock Badge
|--------------------------------------------------------------------------
*/

.sw-stock-badge {
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 50px;
}


/*
|--------------------------------------------------------------------------
| Product Title
|--------------------------------------------------------------------------
*/

.sw-product-card h2 {
    line-height: 1.4;
}

.sw-product-card h2 a:hover {
    color: #000;
}


/*
|--------------------------------------------------------------------------
| Rating
|--------------------------------------------------------------------------
*/

.sw-product-rating {
    font-size: 14px;
}


/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.sw-product-card .btn {
    border-radius: 8px;
}

/*
|--------------------------------------------------------------------------
| Quick View
|--------------------------------------------------------------------------
*/

.sw-quickview-category a {
    text-decoration: none;
    color: #777;
    font-size: 14px;
}

.sw-quickview-cart table.variations {
    width: 100%;
    margin-bottom: 15px;
}

.sw-quickview-cart .quantity {
    margin-bottom: 15px;
}

.sw-quickview-cart .single_add_to_cart_button {
    width: 100%;
}

/*
|--------------------------------------------------------------------------
| Quick View Button
|--------------------------------------------------------------------------
*/

.sw-quick-view-btn {
    position: absolute;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 5;
    border-radius: 50px;
    top: 0%;
    right: 0%;
}

.sw-product-card:hover .sw-quick-view-btn {
    opacity: 1;
}

/*
|--------------------------------------------------------------------------
| Product Labels
|--------------------------------------------------------------------------
*/

.sw-product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sw-product-labels .badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 50px;
    width: fit-content;
}

/*
|--------------------------------------------------------------------------
| Personalize Modal
|--------------------------------------------------------------------------
*/

.sw-modal-step {
    min-height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1rem 2rem 1rem;
}

#swPersonalizeModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/* Loader*/
#swPersonalizeContent{
    min-height: 395px;
    position:relative;
    transition:0.3s ease;
}

#swPersonalizeContent.sw-loading{
    opacity:0.5;
    pointer-events:none;
}

#swPersonalizeContent.sw-loading::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:40px;
    height:40px;
    margin-top:-20px;
    margin-left:-20px;
    border:3px solid #ddd;
    border-top-color:#000;
    border-radius:50%;
    animation:swSpin 0.7s linear infinite;
}

@keyframes swSpin{
    to{
        transform:rotate(360deg);
    }
}
/*Loader END*/

.sw-customize-btn {
    border-radius: 50px;
    padding: 12px 24px;
}

.modal-body .sw-btn-close{
    background: transparent !important;
    color: #000 !important;
    padding: 0px 8px !important;
    opacity: 0.7;
}
.modal-body .sw-btn-close:hover{
    opacity: 1;
}

/*---Variation-------*/

.variations{
    margin-bottom : 5px;
    border-width: 1px;
}
.variations .label{
    padding: 0px;
}
.variations .woo-variation-items-wrapper{
    padding: 3px;
}
.woo-variation-items-wrapper .reset_variations{
    display: none !important;
}


/*----------Addons Form-------------*/

.single_variation_wrap .woocommerce-variation-add-to-cart .added_to_cart.wc-forward{
    display: none;
}

/*--------Img and content style*/


/*.sw-step1-wrapper{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*}*/
/*.sw-step1-wrapper .sw-info-box{*/
/*    display: flex;*/
/*}*/
/*.sw-step1-wrapper .sw-info-box .sw-content-box{*/
/*    text-align: left;*/
/*}*/
/*.sw-step1-wrapper .sw-info-box .sw-image-box{*/
/*    width: 25%;*/
/*}*/
/*.sw-step1-wrapper .sw-info-box .sw-image-box img{*/
/*    height: auto;*/
/*    max-width: 45%;*/
/*}*/


.sw-step1-wrapper{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.sw-info-box{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    text-align: left;
}

.sw-image-box{
    width:70px;
    min-width:70px;
    height: auto;
    border-radius:14px;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.sw-image-box img{
    width:75%;
    height:auto;
}
.sw-content-box p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#222;
    font-weight:500;
}
.sw-modal-step h5{
    font-size:18px;
    color:#666;
    margin-bottom:25px;
}
.sw-next-step{
    min-width:220px;
    height:52px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
}

/*-----2nd modal----style-----*/

.sw-step2-wrapper{
    display: flex;
    gap: 3rem;
    margin-bottom: 10px;
    width: 80%;
}
.sw-step2-wrapper .sw-info-box-2{
    width: 50%;
}
.sw-image-box-2 img{
    width:75%;
    height:auto;
}

.sw-info-box-2 .sw-content-box p{
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    color: #606060;
    font-weight: 500;
}


/*
|--------------------------------------------------------------------------
| Modal Back Button
|--------------------------------------------------------------------------
*/

.sw-modal-back-btn {
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 10;
    border: 0;
    background: transparent !important;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    color: #000 !important;
    opacity: 0.7;
    display: flex;
    justify-content: flex-start;
    width: 3%;
}

.sw-modal-back-btn:hover {
    opacity: 1;
    background: none;
    color: #000;
}

/*---Show Error message-----*/

.spap-field.sw-error input,
.spap-field.sw-error textarea,
.spap-field.sw-error select{
    border-color:#dc3545 !important;
}
.sw-customize-btn{
    min-width: 50%;
}

/*----Custom Add to cart------------*/

.sw-customize-btn{
    min-width: 33%;
}


/*add to cart button*/

.woocommerce-js #respond input#submit.added::after, .woocommerce-js a.button.added::after, .woocommerce-js button.button.added::after, .woocommerce-js input.button.added::after {

    display: none;
}

/*----Iframe style-----*/

.sw-checkout-step{
    width:100%;
    max-width:100%;
}

.sw-checkout-iframe-wrap{
    width:100%;
    height:80vh;
}

#swCheckoutIframe{
    width:100%;
    height:100%;
    border:none;
}

.sw-modal-large{
    max-width:1200px;
    width:95%;
}

/*floating cart icon*/
/*#swCheckoutIframe ..uwpmc-widget-container{*/
/*    display: none;*/
/*}*/











