/*
====================================================
MES JOLY CREATIONS
Theme Premium V2
Couleurs : Rose poudré & Blanc
====================================================
*/

/* ==========================
VARIABLES
========================== */

:root{

    --primary:#E89AB3;
    --primary-dark:#D97C9D;
    --secondary:#FFF9F7;
    --white:#ffffff;
    --text:#333333;
    --text-light:#777777;
    --border:#F1E7E9;

    --radius:28px;
    --radius-small:18px;

    --shadow:0 12px 35px rgba(0,0,0,.06);
    --shadow-hover:0 25px 55px rgba(0,0,0,.12);

    --transition:.35s ease;

    --container:1380px;

}


/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--secondary);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    padding-top:120px;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}


/* ==========================
TOP BAR
========================== */

.top-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:42px;

    background:var(--primary);

    color:#fff;

    z-index:1001;

    overflow:hidden;

}

.top-bar-container{

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.announcement-slider{

    position:relative;

    width:100%;

    height:42px;

}

.announcement-slider span{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.5s;

    font-size:14px;

    font-weight:500;

}

.announcement-slider span.active{

    opacity:1;

}

.announcement-slider a{

    color:#fff;

    font-weight:700;

}


/* ==========================
HEADER
========================== */

.site-header{

    position:fixed;

    top:42px;

    left:0;

    width:100%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    z-index:1000;

    transition:var(--transition);

}

.site-header.scrolled{

    background:rgba(255,255,255,.97);

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:18px 0;

}

.logo{

    flex:0 0 180px;

}

.main-nav{

    flex:1;

}

.header-actions{

    flex:0 0 120px;

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}

.logo img{

    width:170px;

    display:block;

}

.site-header.scrolled .logo img{

    width:140px;

}


/*=========================
MENU DESKTOP
=========================*/

.main-nav .desktop-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

    list-style:none;

    margin:0;

    padding:0;

}

.main-nav .desktop-menu li{

    position:relative;

}

.main-nav .desktop-menu a{

    display:block;

    padding:8px 0;

    color:#333;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.main-nav .desktop-menu a:hover{

    color:#E89AB3;

}

.main-nav .desktop-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:#E89AB3;

    transition:.3s;

}

.main-nav .desktop-menu a:hover::after{

    width:100%;

}


/* ==========================
HEADER ACTIONS
========================== */


.header-actions{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:20px;

}

.account-link,
.cart-link{

    font-size:22px;

    color:#333;

    transition:.3s;

}

.account-link:hover,
.cart-link:hover{

    color:#E89AB3;

}

.cart-link span{

    position:absolute;

    top:-8px;

    right:-10px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:11px;

    display:flex;

    justify-content:center;

    align-items:center;

}


/* ==========================
MENU MOBILE
========================== */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:28px;

    cursor:pointer;

    color:var(--text);

}

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    max-width:90%;

    height:100vh;

    background:#fff;

    box-shadow:-20px 0 50px rgba(0,0,0,.10);

    padding:120px 40px;

    transition:.4s;

    z-index:1500;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu li{

    margin-bottom:28px;

}

.mobile-menu a{

    font-size:22px;

    font-weight:600;

}
/*==================================================
HERO
==================================================*/

.hero{

    min-height:92vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top left,#FFE7EF 0%,transparent 35%),
    radial-gradient(circle at bottom right,#FBE9F0 0%,transparent 30%),
    var(--secondary);

}

.hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.hero-content{

    max-width:620px;

}

.subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#FFE7EF;

    color:var(--primary-dark);

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;

    line-height:1.08;

    margin-bottom:25px;

    color:var(--text);

}

.hero-content p{

    font-size:20px;

    color:var(--text-light);

    margin-bottom:40px;

    max-width:520px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    font-size:17px;

    transition:var(--transition);

    box-shadow:0 15px 35px rgba(232,154,179,.30);

}

.btn:hover{

    transform:translateY(-6px);

    background:var(--primary-dark);

    box-shadow:0 25px 50px rgba(232,154,179,.45);

}

.hero-image{

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#FCE8EF;

    filter:blur(30px);

    z-index:0;

}

.hero-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:560px;

    border-radius:35px;

    box-shadow:0 35px 80px rgba(0,0,0,.12);

    transition:.45s;

}

.hero-image img:hover{

    transform:translateY(-10px) rotate(-1deg);

}


/* Décorations */

.hero::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#FCE2EB;

    border-radius:50%;

    top:160px;

    left:-60px;

    opacity:.6;

}

.hero::after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#FFD8E5;

    border-radius:50%;

    right:80px;

    bottom:100px;

    opacity:.6;

}


/*==================================================
COLLECTIONS
==================================================*/

.collections{

    padding:140px 0;

    background:#ffffff;

}

.collections h2{

    text-align:center;

    font-size:56px;

    color:var(--text);

    margin-bottom:15px;

}

.collections .subtitle{

    display:block;

    text-align:center;

    color:var(--text-light);

    margin-bottom:70px;

    font-size:18px;

}

.collections-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.collection-card{

    position:relative;

    height:460px;

    border-radius:35px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.collection-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.collection-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.collection-card:hover img{

    transform:scale(1.08);

}

.collection-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.10));

    z-index:1;

}

.overlay{

    position:absolute;

    left:35px;

    bottom:35px;

    z-index:2;

    color:#fff;

}

.overlay h3{

    font-size:36px;

    margin-bottom:12px;

}

.overlay span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:var(--primary);

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.collection-card:hover .overlay span{

    background:var(--primary);

    color:#fff;

    transform:translateX(8px);

}

/*==================================================
PRODUITS WOOCOMMERCE PREMIUM
==================================================*/

.products-home,
.shop-products{

    padding:140px 0;

    background:var(--secondary);

}

.products-home h2,
.shop-hero h1{

    text-align:center;

    font-size:54px;

    margin-bottom:15px;

    color:var(--text);

}

.shop-hero p,
.section-subtitle{

    text-align:center;

    color:var(--text-light);

    margin-bottom:60px;

    font-size:18px;

}

.woocommerce ul.products{

    display:grid !important;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin:0;

    padding:0;

}

.woocommerce ul.products li.product{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

    position:relative;

}

.woocommerce ul.products li.product:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.woocommerce ul.products li.product img{

    width:100%;

    transition:.5s;

}

.woocommerce ul.products li.product:hover img{

    transform:scale(1.08);

}

.woocommerce ul.products li.product h2{

    font-size:22px;

    padding:25px 25px 5px;

    color:var(--text);

}

.woocommerce ul.products li.product .price{

    display:block;

    padding:0 25px;

    margin-bottom:22px;

    font-size:24px;

    color:var(--primary);

    font-weight:700;

}

.woocommerce ul.products li.product .star-rating{

    margin:0 25px 20px;

}

.woocommerce ul.products li.product .button{

    display:block;

    margin:0 25px 25px;

    text-align:center;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    padding:16px;

    font-weight:600;

    transition:var(--transition);

}

.woocommerce ul.products li.product .button:hover{

    background:var(--primary-dark);

}

.woocommerce span.onsale{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--primary);

    border-radius:50px;

    padding:8px 18px;

    color:#fff;

    font-size:13px;

    font-weight:600;

    min-height:auto;

    min-width:auto;

    line-height:1.3;

}

.woocommerce ul.products li.product .added_to_cart{

    display:none;

}

/*==================================================
FOOTER PREMIUM
==================================================*/

.site-footer{

    background:#ffffff;

    margin-top:140px;

    border-top:1px solid var(--border);

}

.footer-top{

    padding:90px 0 60px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer-logo img{

    width:180px;

    margin-bottom:20px;

}

.footer-description{

    color:var(--text-light);

    line-height:1.8;

    max-width:380px;

}

.footer-column h3{

    font-size:22px;

    margin-bottom:25px;

    color:var(--text);

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-column a{

    color:var(--text-light);

    transition:var(--transition);

}

.footer-column a:hover{

    color:var(--primary);

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FDECF2;

    color:var(--primary);

    font-size:20px;

    transition:var(--transition);

}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

}

.footer-bottom{

    border-top:1px solid var(--border);

    padding:25px 0;

    text-align:center;

    color:#888;

    font-size:15px;

}
    
    /*==================================================
AVANTAGES
==================================================*/

.advantages{

    padding:120px 0;

    background:#fff;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.advantage{

    background:#fff;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.advantage:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.advantage .icon{

    font-size:42px;

    margin-bottom:20px;

}

.advantage h3{

    font-size:24px;

    margin-bottom:15px;

}

.advantage p{

    color:#777;

    line-height:1.7;

}

/*==================================================
A PROPOS
==================================================*/

.about-home{

    padding:140px 0;

    background:var(--secondary);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h2{

    font-size:52px;

    margin-bottom:25px;

    line-height:1.2;

}

.about-content p{

    margin-bottom:20px;

    color:#666;

    font-size:18px;

}

.about-content .btn{

    margin-top:20px;

}

@media(max-width:991px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

.about-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.advantages-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-content .btn{

width:100%;

}

}

/* HEADER */

.main-nav{
    display:flex;
    justify-content:center;
}

.main-nav .desktop-menu{
    display:flex !important;
    flex-direction:row !important;
    align-items:center;
    justify-content:center;
    gap:35px;
}

.main-nav .desktop-menu li{
    display:block;
}

.main-nav .desktop-menu li a{
    white-space:nowrap;
}

/* ===== CORRECTION HEADER ===== */

.site-header{

    background:#fff;

}

.header-container{

    display:flex !important;

    align-items:center;

    justify-content:space-between;

}

.logo{

    flex:0 0 220px;

}

.logo img{

    width:170px;

}

.main-nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.main-nav ul{

    display:flex !important;

    flex-direction:row !important;

    align-items:center;

    justify-content:center;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}

.main-nav li{

    margin:0 !important;

}

.main-nav li a{

    display:block;

    font-weight:600;

}

.header-actions{

    width:120px;

    display:flex;

    justify-content:flex-end;

}

/*==================================================
BOUTIQUE
==================================================*/

.best-sellers{

    padding:120px 0;

}

.best-sellers ul.products{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.best-sellers ul.products li.product{

    width:100%!important;

    margin:0!important;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.best-sellers ul.products li.product:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.best-sellers ul.products li.product img{

    width:100%;

    transition:.4s;

}

.best-sellers ul.products li.product:hover img{

    transform:scale(1.05);

}

.best-sellers ul.products li.product h2{

    font-size:22px;

    padding:15px 25px 5px;

}

.best-sellers .price{

    display:block;

    padding:0 25px;

    color:#E89AB3;

    font-size:24px;

    font-weight:700;

}

.best-sellers ul.products li.product .button{

    margin:25px;

    border-radius:50px;

    background:#E89AB3;

    color:#fff;

    padding:15px;

    text-align:center;

    font-weight:600;

    transition:.3s;

}

.best-sellers ul.products li.product .button:hover{

    background:#d97899;

}

.best-sellers .star-rating{

    margin:10px 25px;

}

@media(max-width:991px){

.best-sellers ul.products{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.best-sellers ul.products{

grid-template-columns:1fr;

}

}

/*==================================================
PAGE BOUTIQUE
==================================================*/

.shop-hero{

    padding:120px 0 80px;

    text-align:center;

    background:#FFF7F8;

}

.shop-hero h1{

    font-size:60px;

    margin:20px 0;

}

.shop-hero p{

    max-width:700px;

    margin:auto;

    color:#666;

}

.shop-products{

    padding:90px 0;

}

/*==================================================
FICHE PRODUIT
==================================================*/

.single-product-page{

    padding:90px 0;

}

.single-product div.product{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:flex-start;

}

.single-product .woocommerce-product-gallery{

    background:#fff;

    width:58%;

    border-radius:30px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.single-product .summary{

    background:#fff;

    width:38%;

    border-radius:30px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.single-product .product_title{

    font-size:42px;

    margin-bottom:20px;

}

.single-product .price{

    font-size:34px;

    color:#E89AB3;

    font-weight:700;

    margin:20px 0;

}

.single-product .woocommerce-product-details__short-description{

    color:#666;

    margin-bottom:35px;

    line-height:1.8;

}

.single-product .quantity input{

    width:70px;

    height:50px;

    border-radius:15px;

    border:1px solid #ddd;

}

.single-product .single_add_to_cart_button{

    background:#E89AB3 !important;

    color:#fff !important;

    border-radius:50px !important;

    padding:18px 40px !important;

    font-size:17px !important;

    transition:.3s;

}

.single-product .single_add_to_cart_button:hover{

    background:#d97799 !important;

}

.single-product .product_meta{

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid #eee;

}
@media(max-width:991px){

.single-product div.product{

grid-template-columns:1fr;

gap:40px;

}

}
.single_add_to_cart_button{

    width:100%;

    height:60px;

    border-radius:50px !important;

    font-size:20px !important;

    font-weight:600;

    transition:.3s;

}

.single_add_to_cart_button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(232,154,179,.35);

}

.woocommerce-product-gallery__image img{

    transition:.4s;

}

.woocommerce-product-gallery__image img:hover{

    transform:scale(1.03);

}
.product-features .feature{

    transition:.3s;

}

.product-features .feature:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(232,154,179,.20);

}
/*==================================================
BLOC REASSURANCE
==================================================*/

.product-reassurance{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.product-reassurance .item{

    background:#FFF6F8;

    border-radius:20px;

    padding:18px;

    display:flex;

    align-items:center;

    gap:15px;

}

.product-reassurance i{

    font-size:24px;

    color:#E89AB3;

}

.product-reassurance h4{

    font-size:16px;

    margin-bottom:4px;

}

.product-reassurance p{

    font-size:14px;

    color:#777;

}

/*==================================================
FOOTER PREMIUM
==================================================*/

.site-footer{

    background:#FFF6F8;

    margin-top:120px;

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding-bottom:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-col h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-col p{

    color:#666;

    line-height:1.8;

}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col li{

    margin-bottom:15px;

}

.footer-col a{

    color:#444;

    transition:.3s;

}

.footer-col a:hover{

    color:#E89AB3;

}

.footer-social{

    display:flex;

    gap:18px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#E89AB3;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    transform:translateY(-5px);

    background:#d97799;

}

.footer-bottom{

    border-top:1px solid #f0d9e0;

    padding:25px 0;

    text-align:center;

    color:#777;

}
@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

}

/*==================================================
PANIER
==================================================*/

.cart-page{

    padding:100px 0;

}

.cart-title{

    text-align:center;

    font-size:52px;

    margin-bottom:60px;

}

.woocommerce-cart-form{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.shop_table{

    width:100%;

    border-collapse:collapse;

}

.shop_table tr{

    border-bottom:1px solid #f1f1f1;

}

.shop_table td{

    padding:25px 15px;

    vertical-align:middle;

}

.product-thumbnail img{

    width:120px;

    border-radius:20px;

}

.product-name h3{

    font-size:24px;

    margin-bottom:10px;

}

.product-name a{

    color:#333;

}

.product-name .price{

    color:#E89AB3;

    font-weight:700;

    font-size:22px;

}

.product-quantity input{

    width:70px;

    height:45px;

    text-align:center;

    border-radius:12px;

    border:1px solid #ddd;

}

.product-subtotal{

    font-size:22px;

    font-weight:700;

    color:#E89AB3;

}

.cart-totals{

    margin-top:50px;

    background:#FFF6F8;

    border-radius:30px;

    padding:40px;

}

.cart-totals h2{

    margin-bottom:25px;

}

.cart_totals table{

    width:100%;

}

.cart_totals td,
.cart_totals th{

    padding:15px 0;

}

.wc-proceed-to-checkout a{

    display:block;

    width:100%;

    background:#E89AB3 !important;

    color:#fff !important;

    text-align:center;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    transition:.3s;

}

.wc-proceed-to-checkout a:hover{

    background:#d97799 !important;

}
@media(max-width:768px){

.shop_table td{

display:block;

width:100%;

text-align:center;

}

.product-thumbnail img{

margin:auto;

}

.cart-title{

font-size:38px;

}

.woocommerce-cart-form{

padding:20px;

}

}

/*====================================
FICHE PRODUIT PREMIUM
====================================*/

.single-product .summary{

    position: sticky;

    top: 120px;

}
/*=================================
FICHE PRODUIT V2
=================================*/

.single-product .product{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:80px;

}

.single-product .woocommerce-product-gallery{

    width:58%;

}

.single-product .summary{

    width:42%;

    position:sticky;

    top:120px;

}
.single-product .woocommerce-product-gallery img{

    width:100%;

    border-radius:30px;

    transition:.35s;

}

.single-product .woocommerce-product-gallery img:hover{

    transform:scale(1.02);

}
.product-reassurance{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

    margin-top:40px;

}

.product-reassurance .item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    background:#fff8fb;

    border-radius:20px;

    transition:.3s;

}

.product-reassurance .item:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(232,154,179,.20);

}

.product-reassurance i{

    font-size:28px;

    color:#E89AB3;

}
.summary .price{

    font-size:36px;

    font-weight:700;

    color:#E89AB3;

    margin:20px 0;

}
.single_add_to_cart_button{

    width:100%;

    border-radius:50px !important;

    height:62px;

    font-size:19px !important;

    font-weight:600;

}