
.container{
    max-width:1200px;
    margin:auto;
}

.woocommerce-account .woocommerce{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin:50px 0;
}

.woocommerce-MyAccount-navigation{
    width:280px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.woocommerce-MyAccount-content{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.woocommerce-MyAccount-navigation ul{
    list-style:none;
    padding:0;
    margin:0;
}

.woocommerce-MyAccount-navigation li{
    margin-bottom:12px;
}

.woocommerce-MyAccount-navigation li a{
    display:block;
    padding:14px 18px;
    background:#f7f7f7;
    border-radius:12px;
    text-decoration:none;
    color:#333;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover{
    background:#c89820;
    color:#fff;
}

.woocommerce-Addresses{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.woocommerce-Address{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.woocommerce-address-fields input,
.woocommerce-address-fields select{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:15px;
}

.woocommerce-address-fields button{
    background:#c89820;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:12px 30px;
}
/* Address Cards Same Row */
.woocommerce-Addresses{
    display:flex !important;
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:stretch !important;
    gap:40px !important;
    width:100% !important;
}

.woocommerce-Addresses .woocommerce-Address,
.woocommerce-Addresses .woocommerce-column{
    flex:0 0 calc(50% - 20px) !important;
    max-width:calc(50% - 20px) !important;
    width:calc(50% - 20px) !important;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    box-sizing:border-box;
}

/* Button */
.woocommerce-Address-title a{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:50px;
    background:#c89820 !important;
    color:#fff !important;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    padding:0 25px;
    white-space:nowrap;
}
@media(max-width:768px){

    .woocommerce-Addresses{
        flex-wrap:wrap !important;
    }

    .woocommerce-Addresses .woocommerce-Address,
    .woocommerce-Addresses .woocommerce-column{
        width:100% !important;
        max-width:100% !important;
        flex:0 0 100% !important;
    }

}
.woocommerce-Address h3{
    font-size:38px;
    margin-bottom:20px;
}

.woocommerce-Addresses address{
    margin-top:25px;
    line-height:30px;
    font-style:normal;
    color:#444;
}

/* =========================
   WooCommerce Shop Page
========================= */

.woocommerce-page .container,
.woocommerce .container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* Shop Header */
.woocommerce-products-header__title,
.woocommerce h1.page-title{
    font-size:48px;
    margin-bottom:15px;
}

.woocommerce-result-count{
    float:left;
    margin-bottom:40px;
    font-size:16px;
}

.woocommerce-ordering{
    float:right;
    margin-bottom:40px;
}

.woocommerce-ordering select{
    height:48px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
}

.woocommerce::after{
    content:"";
    display:block;
    clear:both;
}

/* Product Grid */
.woocommerce ul.products{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(340px,400px));
    justify-content:center;
    gap:40px;
    padding:0 !important;
    margin:50px 0 !important;
    list-style:none !important;
}

/* Product Card */
.woocommerce ul.products li.product{
    list-style:none !important;
    background:#fff;
    border-radius:25px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:550px;
}

.woocommerce ul.products li.product:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Product Image */
.woocommerce ul.products li.product img{
    width:100% !important;
    height:280px !important;
    object-fit:contain !important;
    background:#f8f8f8;
    border-radius:20px;
    padding:20px;
    margin-bottom:25px;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:30px;
    line-height:1.4;
    color:#222;
    margin-bottom:15px;
    min-height:80px;
}

/* Price */
.woocommerce ul.products li.product .price{
    display:block;
    font-size:30px;
    font-weight:700;
    color:#c89820;
    margin-bottom:25px;
}

/* Add To Cart Button */
.woocommerce ul.products li.product .button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:200px;
    height:52px;
    padding:0 35px;
    background:linear-gradient(135deg,#c89820,#e0b84f);
    color:#fff !important;
    border:none;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin:auto auto 0;
    transition:.3s;
}

.woocommerce ul.products li.product .button:hover{
    transform:translateY(-3px);
}

/* Remove Bullet */
.woocommerce ul.products li{
    list-style:none !important;
}

/* Mobile */
@media(max-width:768px){

    .woocommerce-result-count,
    .woocommerce-ordering{
        float:none;
        width:100%;
        text-align:left;
        margin-bottom:20px;
    }

    .woocommerce ul.products{
        grid-template-columns:1fr;
    }

    .woocommerce ul.products li.product{
        min-height:auto;
    }

    .woocommerce ul.products li.product img{
        height:220px !important;
    }
}
.woocommerce ul.products li.product a{
    text-decoration:none;
}

/*.woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
    clear: both;
    padding: 10px;
    background-color: #e9e9e9;
    list-style: none;
}*/

/* SHOP GRID */
.woocommerce ul.products,
.woocommerce-page ul.products{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:30px !important;
    margin:40px 0 !important;
    padding:0 !important;
    list-style:none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after{
    display:none !important;
}

/* PRODUCT BOX */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
    width:calc(33.333% - 20px) !important;
    max-width:calc(33.333% - 20px) !important;
    background:#fff !important;
    border-radius:15px !important;
    padding:15px !important;
    text-align:center !important;
    list-style:none !important;
    box-shadow:0 10px 30px rgba(0,0,0,.08) !important;
    transition:.3s !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* IMAGE */
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img{
    width:100% !important;
    height:280px !important;
    object-fit:contain !important;
    background:#f8f8f8;
    border-radius:20px;
    padding:15px;
    margin-bottom:20px;
}

/* TITLE */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:26px !important;
    line-height:1.4;
    color:#222;
    margin-bottom:15px;
}

/* PRICE */
.woocommerce ul.products li.product .price{
    display:block;
    font-size:28px;
    font-weight:700;
    color:#c89820;
    margin-bottom:20px;
}

/* BUTTON */
.woocommerce ul.products li.product .button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:50px;
    padding:0 30px;
    background:linear-gradient(135deg,#c89820,#e0b84f) !important;
    color:#fff !important;
    border-radius:40px !important;
    text-decoration:none;
    font-weight:600;
}

/* TABLET */
@media(max-width:991px){

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product{
        width:calc(50% - 15px) !important;
        max-width:calc(50% - 15px) !important;
    }

}

/* MOBILE */
@media(max-width:767px){

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product{
        width:100% !important;
        max-width:100% !important;
    }

}
/* Price */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price{
    display:block !important;
    width:100%;
    margin-bottom:20px !important;
    font-size:28px;
    color:#c89820;
    font-weight:700;
}

/* Book Now Button */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button{
    display:inline-flex !important;
    clear:both !important;
    margin-top:5px !important;
}

/* Book Now Button Style */
.woocommerce ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:180px !important;
    height:50px !important;

    margin:20px auto 0 !important;
    padding:0 25px !important;

    background:linear-gradient(135deg,#c89820,#e0b84f) !important;
    color:#fff !important;
    border:0 !important;
    border-radius:50px !important;

    font-size:16px !important;
    font-weight:600 !important;
    text-decoration:none !important;
    line-height:50px !important;

    box-shadow:0 8px 20px rgba(200,152,32,.25) !important;
    transition:all .3s ease !important;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce-page ul.products li.product a.button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(200,152,32,.35) !important;
}

.menu-cart{
    list-style:none;
}

.menu-cart a{
    display:flex;
    align-items:center;
    gap:8px;
    background:#c89820;
    color:#fff !important;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    position:relative;
}

.menu-cart a:hover{
    background:#b2841d;
}

.cart-count{
    width:22px;
    height:22px;
    background:#fff;
    color:#c89820;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

/* SINGLE PRODUCT PAGE */







/* Tabs */
.woocommerce-tabs{
    margin-top:70px;
}

.woocommerce-tabs ul.tabs{
    display:flex;
    gap:15px;
    border:none;
    padding:0;
}

.woocommerce-tabs ul.tabs li{
    list-style:none;
    background:#f7f7f7;
    border:none;
    border-radius:12px;
    padding:12px 25px;
}

.woocommerce-tabs ul.tabs li.active{
    background:#c89820;
}

.woocommerce-tabs ul.tabs li.active a{
    color:#fff;
}

.woocommerce-Tabs-panel{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:25px;
}

/

/* =========================
   WooCommerce Reviews Design
========================= */

#reviews{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:30px;
}

#reviews h2,
#reviews h3{
    font-size:38px;
    color:#222;
    margin-bottom:20px;
}

/* No Review Text */
#reviews .woocommerce-noreviews,
#reviews .comment-reply-title{
    font-size:18px;
    color:#555;
    margin-bottom:20px;
}

/* Rating Stars */
.comment-form-rating{
    margin-bottom:25px;
}

.comment-form-rating label{
    font-weight:600;
    margin-bottom:12px;
}

/* Hide text */
.comment-form-rating p.stars a{
    position:relative;
    width:34px;
    height:34px;
    display:inline-block;
    margin-right:5px;
}

/* Show star */
.comment-form-rating p.stars a::before{
    content:"★";
    position:absolute;
    top:0;
    left:0;
    text-indent:0;
    font-size:32px;
    line-height:34px;
    color:#c89820;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a.active{
    background:#c89820;
    color:#fff;
}

/* Textarea */
#review_form textarea{
    width:100%;
    min-height:180px;
    padding:20px;
    border:1px solid #ddd;
    border-radius:20px;
    resize:none;
    font-size:16px;
    margin-top:15px;
    margin-bottom:25px;
}

#review_form textarea:focus{
    outline:none;
    border-color:#c89820;
    box-shadow:0 0 0 4px rgba(200,152,32,.15);
}

/* Submit Button */
#review_form input[type="submit"],
#review_form .submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:52px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#c89820,#e0b84f);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#review_form input[type="submit"]:hover,
#review_form .submit:hover{
    transform:translateY(-3px);
}

/* Existing Reviews */
.woocommerce-Reviews .commentlist{
    list-style:none;
    padding:0;
}

.woocommerce-Reviews .commentlist li{
    background:#fafafa;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.woocommerce-Reviews .comment-text{
    margin-left:0 !important;
}

.woocommerce-review__author{
    font-size:18px;
    font-weight:700;
    color:#222;
}

.woocommerce-review__published-date{
    color:#888;
    font-size:14px;
}

/* ==========================
   WooCommerce Review Stars
========================== */

.comment-form-rating p.stars{
    margin-top:15px;
}

.comment-form-rating p.stars span{
    display:flex !important;
    flex-direction:row !important;
    gap:8px;
    align-items:center;
}

.comment-form-rating p.stars a{
    position:relative;
    display:block !important;
    width:35px;
    height:35px;
    overflow:hidden;
    text-indent:-9999px;
    float:none !important;
    flex:0 0 35px;
}

/* Default Star */
.comment-form-rating p.stars a::before{
    content:"★";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    text-indent:0;
    font-size:30px;
    color:#d9d9d9;
    line-height:1;
    transition:.3s;
}

/* Hover */
.comment-form-rating p.stars a:hover::before{
    color:#c89820;
}

/* Selected Stars */
.comment-form-rating p.stars.selected a.active::before,
.comment-form-rating p.stars.selected a.active ~ a::before{
    color:#c89820;
}

/* Mobile */
@media(max-width:768px){

    .comment-form-rating p.stars a{
        width:30px;
        height:30px;
        flex:0 0 30px;
    }

    .comment-form-rating p.stars a::before{
        font-size:26px;
    }
}














/*details right side*/




/* SINGLE PRODUCT RIGHT SIDE DESIGN */

.summary.entry-summary{
    background:#fff !important;
    padding:45px !important;
    border-radius:30px !important;
    box-shadow:0 15px 45px rgba(0,0,0,.08) !important;
}

.summary.entry-summary .product_title{
    font-size:52px !important;
    line-height:1.2 !important;
    color:#1f1f1f !important;
    margin-bottom:20px !important;
    font-family:'Playfair Display',serif !important;
}

.summary.entry-summary .price{
    display:block !important;
    font-size:38px !important;
    color:#c89820 !important;
    font-weight:700 !important;
    margin-bottom:25px !important;
}

.summary.entry-summary .woocommerce-product-details__short-description{
    font-size:20px !important;
    line-height:1.8 !important;
    color:#555 !important;
    margin-bottom:35px !important;
}

.summary.entry-summary form.cart{
    display:flex !important;
    align-items:center !important;
    gap:15px !important;
    margin-bottom:30px !important;
}

.summary.entry-summary .quantity input.qty{
    width:90px !important;
    height:55px !important;
    border:1px solid #ddd !important;
    border-radius:12px !important;
    text-align:center !important;
    font-size:18px !important;
}

.summary.entry-summary .single_add_to_cart_button{
    background:linear-gradient(
        135deg,
        #c89820,
        #e0b84f
    ) !important;

    color:#fff !important;
    border:none !important;
    border-radius:50px !important;
    padding:0 35px !important;
    height:55px !important;
    font-size:16px !important;
    font-weight:600 !important;
    box-shadow:0 8px 25px rgba(200,152,32,.35) !important;
}

.summary.entry-summary .single_add_to_cart_button:hover{
    transform:translateY(-3px);
}

.summary.entry-summary .product_meta{
    margin-top:30px !important;
    padding-top:25px !important;
    border-top:1px solid #eee !important;
    font-size:18px !important;
    color:#666 !important;
}

.summary.entry-summary .product_meta a{
    color:#c89820 !important;
    font-weight:600 !important;
}


/* Payment section inside right sidebar */
.wc-block-checkout__sidebar #payment-method{
    margin-top:30px !important;
    width:100% !important;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:25px;
}

/* Proceed Button */
.wc-block-checkout__sidebar .wc-block-components-checkout-place-order-button{
    width:100%;
    min-height:55px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#c89820,#e0b84f);
    color:#fff;
    font-size:18px;
    font-weight:700;
}

/* Terms text */
.wc-block-checkout__sidebar .wc-block-components-checkbox,
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item{
    margin-top:20px;
}

/* Mobile */
@media(max-width:991px){

    .wc-block-checkout__sidebar #payment-method{
        margin-top:20px !important;
    }
}

/* Payment section inside right sidebar */
.wc-block-checkout__sidebar #payment-method{
    margin-top:30px !important;
    width:100% !important;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:25px;
}

/* Proceed Button */
.wc-block-checkout__sidebar .wc-block-components-checkout-place-order-button{
    width:100%;
    min-height:55px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#c89820,#e0b84f);
    color:#fff;
    font-size:18px;
    font-weight:700;
}

/* Terms text */
.wc-block-checkout__sidebar .wc-block-components-checkbox,
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item{
    margin-top:20px;
}

/* Mobile */
@media(max-width:991px){

    .wc-block-checkout__sidebar #payment-method{
        margin-top:20px !important;
    }
}

.woocommerce-MyAccount{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.woocommerce-MyAccount-navigation{
    width:280px;
    flex:0 0 280px;
}

.woocommerce-MyAccount-content{
    flex:1;
    min-width:0;
}

@media(max-width:991px){
    .woocommerce-MyAccount{
        flex-direction:column;
    }

    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content{
        width:100%;
        flex:0 0 100%;
    }
}


/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 1
= General + WooCommerce Shop
=
==================================================*/

/*==============================
    GENERAL
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}

/*==============================
    BUTTON
==============================*/

.btn-gold,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:50px;
    padding:0 30px;

    border:none;
    border-radius:50px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;
    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
}

.btn-gold:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{

    transform:translateY(-3px);

}


/*==============================
    SHOP PAGE
==============================*/

.woocommerce-page .container,
.woocommerce .container{

    max-width:1200px;
    margin:auto;
    padding:60px 20px;

}

.woocommerce-products-header{
    margin-bottom:40px;
}

.woocommerce-products-header__title,
.woocommerce h1.page-title{

    font-size:46px;
    color:#222;
    margin-bottom:10px;

}

.woocommerce-result-count{

    float:left;
    font-size:16px;
    color:#666;

}

.woocommerce-ordering{

    float:right;

}

.woocommerce-ordering select{

    height:48px;
    padding:0 18px;

    border:1px solid #ddd;
    border-radius:10px;

    background:#fff;

}

.woocommerce::after{

    content:"";
    display:block;
    clear:both;

}


/*==============================
    PRODUCT GRID
==============================*/

.woocommerce ul.products,
.woocommerce-page ul.products{

    display:flex;
    flex-wrap:wrap;

    gap:30px;

    margin:50px 0;

    padding:0;

}

.woocommerce ul.products::before,
.woocommerce ul.products::after,

.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after{

    display:none;

}


/*==============================
    PRODUCT CARD
==============================*/

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{

    width:calc(33.333% - 20px);

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

    padding:20px;

    display:flex;

    flex-direction:column;

}

.woocommerce ul.products li.product:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}


/*==============================
    PRODUCT IMAGE
==============================*/

.woocommerce ul.products li.product img{

    width:100%;

    height:280px;

    object-fit:contain;

    background:#fafafa;

    border-radius:18px;

    padding:20px;

    margin-bottom:20px;

}


/*==============================
    PRODUCT TITLE
==============================*/

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title{

    font-size:28px;

    color:#222;

    line-height:1.4;

    margin-bottom:15px;

    min-height:80px;

}


/*==============================
    PRICE
==============================*/

.woocommerce ul.products li.product .price{

    display:block;

    font-size:28px;

    font-weight:700;

    color:#c89820;

    margin-bottom:20px;

}


/*==============================
    SALE BADGE
==============================*/

.woocommerce span.onsale{

    left:20px;

    top:20px;

    min-width:65px;

    min-height:65px;

    line-height:65px;

    background:#c89820;

}


/*==============================
    SHOP BUTTON
==============================*/

.woocommerce ul.products li.product .button{

    width:180px;

    margin:auto auto 0;

}


/*==============================
    MOBILE
==============================*/

@media(max-width:991px){

.woocommerce ul.products li.product{

    width:calc(50% - 15px);

}

}

@media(max-width:767px){

.woocommerce-result-count,

.woocommerce-ordering{

    float:none;

    width:100%;

    margin-bottom:20px;

}

.woocommerce ul.products li.product{

    width:100%;

}

.woocommerce ul.products li.product img{

    height:220px;

}

}

/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 2
= SINGLE PRODUCT
=
==================================================*/


/*==============================
    SINGLE PRODUCT WRAPPER
==============================*/

.single-product .site-main{
    padding:80px 0;
}

.single-product div.product{

    display:flex;
    flex-wrap:wrap;

    align-items:flex-start;
    justify-content:space-between;

    gap:60px;

    margin:0;

}


/*==============================
    LEFT GALLERY
==============================*/

.single-product div.product div.images,
.single-product div.product .woocommerce-product-gallery{

    flex:0 0 48%;
    max-width:48%;
    width:48%;

    float:none;
    margin:0;

}

.single-product .woocommerce-product-gallery__wrapper{

    border-radius:25px;
    overflow:hidden;

}

.single-product div.product div.images img,
.single-product .woocommerce-product-gallery img{

    width:100%;
    height:auto;

    display:block;

    border-radius:25px;

    background:#fafafa;

    padding:15px;

}


/*==============================
    SALE BADGE
==============================*/

.single-product span.onsale{

    left:20px;
    top:20px;

    z-index:5;

}


/*==============================
    RIGHT SUMMARY
==============================*/

.single-product div.product div.summary,
.single-product .summary.entry-summary{

    flex:0 0 48%;
    max-width:48%;
    width:48%;

    margin:0;
    float:none;

    background:#fff;

    padding:45px;

    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


/*==============================
    TITLE
==============================*/

.single-product .product_title{

    font-size:52px;

    line-height:1.2;

    color:#222;

    margin-bottom:20px;

}


/*==============================
    PRICE
==============================*/

.single-product .price{

    display:block;

    font-size:38px;

    color:#c89820;

    font-weight:700;

    margin-bottom:25px;

}

.single-product del{

    color:#999;
    margin-right:10px;

}


/*==============================
    SHORT DESCRIPTION
==============================*/

.single-product .woocommerce-product-details__short-description{

    font-size:18px;

    line-height:1.8;

    color:#555;

    margin-bottom:30px;

}


/*==============================
    CART FORM
==============================*/

.single-product form.cart{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:30px;

}


/*==============================
    QUANTITY
==============================*/

.single-product .quantity{

    margin:0;

}

.single-product .quantity input.qty{

    width:90px;

    height:55px;

    border:1px solid #ddd;

    border-radius:12px;

    text-align:center;

    font-size:18px;

}


/*==============================
    ADD TO CART
==============================*/

.single-product .single_add_to_cart_button{

    height:55px;

    padding:0 35px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

    font-size:16px;

    font-weight:600;

}

.single-product .single_add_to_cart_button:hover{

    transform:translateY(-3px);

}


/*==============================
    META
==============================*/

.single-product .product_meta{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid #eee;

    color:#666;

    font-size:16px;

}

.single-product .product_meta span{

    display:block;

    margin-bottom:10px;

}

.single-product .product_meta a{

    color:#c89820;

}


/*==============================
    PRODUCT TABS
==============================*/

.single-product .woocommerce-tabs{

    width:100%;

    margin-top:70px;

}

.single-product .woocommerce-tabs ul.tabs{

    display:flex;

    gap:15px;

    border:none;

    padding:0;

}

.single-product .woocommerce-tabs ul.tabs li{

    background:#f5f5f5;

    border:none;

    border-radius:10px;

    padding:12px 25px;

}

.single-product .woocommerce-tabs ul.tabs li.active{

    background:#c89820;

}

.single-product .woocommerce-tabs ul.tabs li.active a{

    color:#fff;

}

.single-product .woocommerce-Tabs-panel{

    background:#fff;

    margin-top:25px;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


/*==============================
    RELATED PRODUCTS
==============================*/

.single-product .related{

    width:100%;

    margin-top:80px;

}


/*==============================
    MOBILE
==============================*/

@media(max-width:991px){

.single-product div.product{

    flex-direction:column;

}

.single-product div.product div.images,
.single-product div.product div.summary{

    width:100%;
    max-width:100%;
    flex:0 0 100%;

}

.single-product .product_title{

    font-size:38px;

}

.single-product .price{

    font-size:30px;

}

.single-product form.cart{

    flex-wrap:wrap;

}

.single-product .single_add_to_cart_button{

    width:100%;

}

}

/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 3
= WOOCOMMERCE REVIEWS
=
==================================================*/


/*==============================
    REVIEW SECTION
==============================*/

#reviews{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-top:40px;

}


/*==============================
    HEADING
==============================*/

#reviews h2,
#reviews h3{

    font-size:36px;

    color:#222;

    margin-bottom:25px;

    font-weight:700;

}


/*==============================
    REVIEW LIST
==============================*/

.woocommerce-Reviews .commentlist{

    margin:0;

    padding:0;

    list-style:none;

}

.woocommerce-Reviews .commentlist li{

    display:flex;

    gap:20px;

    background:#fafafa;

    border-radius:20px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}


/*==============================
    AVATAR
==============================*/

.woocommerce-Reviews .avatar{

    width:70px;

    height:70px;

    border-radius:50%;

}


/*==============================
    REVIEW CONTENT
==============================*/

.woocommerce-review__author{

    font-size:18px;

    font-weight:700;

    color:#222;

}

.woocommerce-review__published-date{

    font-size:14px;

    color:#888;

}

.woocommerce-review__dash{

    display:none;

}

.woocommerce-review__description{

    margin-top:12px;

    line-height:1.8;

    color:#555;

}


/*==============================
    REVIEW STAR
==============================*/

.woocommerce-review__rating{

    margin-bottom:10px;

}

.woocommerce .star-rating{

    color:#c89820;

}


/*==============================
    REVIEW FORM
==============================*/

#review_form_wrapper{

    margin-top:40px;

}

#review_form{

    background:#fff;

    border-radius:20px;

}

#review_form label{

    display:block;

    font-weight:600;

    color:#222;

    margin-bottom:10px;

}

#review_form textarea{

    width:100%;

    min-height:180px;

    border:1px solid #ddd;

    border-radius:15px;

    padding:18px;

    resize:vertical;

    font-size:16px;

    margin-bottom:25px;

}

#review_form textarea:focus{

    outline:none;

    border-color:#c89820;

    box-shadow:0 0 0 4px rgba(200,152,32,.12);

}


/*==============================
    INPUT
==============================*/

#review_form input[type=text],
#review_form input[type=email]{

    width:100%;

    height:50px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    margin-bottom:20px;

}

#review_form input:focus{

    outline:none;

    border-color:#c89820;

}


/*==============================
    STAR SELECT
==============================*/

.comment-form-rating{

    margin-bottom:25px;

}

.comment-form-rating .stars{

    display:flex;

    align-items:center;

    gap:8px;

}

.comment-form-rating .stars a{

    font-size:28px;

    color:#d5d5d5;

    text-decoration:none;

    transition:.3s;

}

.comment-form-rating .stars:hover a{

    color:#c89820;

}

.comment-form-rating .stars a:hover ~ a{

    color:#d5d5d5;

}

.comment-form-rating .stars.selected a{

    color:#c89820;

}


/*==============================
    SUBMIT BUTTON
==============================*/

#review_form input[type=submit]{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 35px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#review_form input[type=submit]:hover{

    transform:translateY(-3px);

}


/*==============================
    NO REVIEW
==============================*/

.woocommerce-noreviews{

    color:#666;

    font-size:17px;

}


/*==============================
    MOBILE
==============================*/

@media(max-width:768px){

.woocommerce-Reviews .commentlist li{

    flex-direction:column;

}

.woocommerce-Reviews .avatar{

    width:60px;

    height:60px;

}

#reviews{

    padding:25px;

}

#reviews h2,
#reviews h3{

    font-size:28px;

}

.comment-form-rating .stars a{

    font-size:24px;

}

}

/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 4
= CART & CHECKOUT
=
==================================================*/


/*==============================
    CART PAGE
==============================*/

.woocommerce-cart .woocommerce{

    display:flex;
    flex-wrap:wrap;
    gap:40px;

}

.woocommerce-cart-form{

    flex:0 0 68%;

}

.cart-collaterals{

    flex:0 0 28%;

}

@media(max-width:991px){

.woocommerce-cart-form,
.cart-collaterals{

    flex:0 0 100%;

}

}


/*==============================
    CART TABLE
==============================*/

.shop_table{

    width:100%;

    border:none;

    border-collapse:collapse;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.shop_table thead{

    background:#c89820;

}

.shop_table thead th{

    color:#fff;

    padding:18px;

    font-size:16px;

    font-weight:600;

}

.shop_table tbody td{

    padding:20px;

    border-bottom:1px solid #eee;

    vertical-align:middle;

}


/*==============================
    CART IMAGE
==============================*/

.shop_table img{

    width:80px;

    border-radius:10px;

}


/*==============================
    QUANTITY
==============================*/

.shop_table .quantity input.qty{

    width:70px;

    height:45px;

    text-align:center;

    border:1px solid #ddd;

    border-radius:10px;

}


/*==============================
    CART BUTTON
==============================*/

.actions .button,
.button[name=update_cart]{

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

    border:none;

    border-radius:40px;

    height:48px;

    padding:0 25px;

}


/*==============================
    COUPON
==============================*/

.coupon{

    display:flex;

    gap:15px;

}

.coupon input{

    height:48px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

}


/*==============================
    CART TOTALS
==============================*/

.cart_totals{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cart_totals h2{

    font-size:30px;

    margin-bottom:25px;

}

.cart_totals table{

    border:none;

}

.cart_totals td,
.cart_totals th{

    padding:15px 0;

    border-bottom:1px solid #eee;

}

.wc-proceed-to-checkout a{

    width:100%;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

}


/*==============================
    CHECKOUT
==============================*/

.woocommerce-checkout{

    display:flex;

    flex-wrap:wrap;

    gap:40px;

}

.woocommerce-checkout #customer_details{

    flex:0 0 58%;

}

.woocommerce-checkout #order_review{

    flex:0 0 38%;

}

@media(max-width:991px){

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review{

    flex:0 0 100%;

}

}


/*==============================
    BILLING FORM
==============================*/

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:12px;

    padding:14px 16px;

    margin-bottom:15px;

}

.woocommerce-checkout textarea{

    min-height:130px;

}


/*==============================
    ORDER REVIEW
==============================*/

#order_review{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

#order_review_heading{

    font-size:32px;

    margin-bottom:25px;

}


/*==============================
    PAYMENT
==============================*/

#payment{

    margin-top:30px;

    border-radius:15px;

    background:#fafafa;

    padding:20px;

}

.wc_payment_methods{

    list-style:none;

    padding:0;

}

.wc_payment_methods li{

    padding:15px 0;

    border-bottom:1px solid #eee;

}

.wc_payment_methods li:last-child{

    border-bottom:none;

}


/*==============================
    PLACE ORDER
==============================*/

#place_order{

    width:100%;

    height:55px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

#place_order:hover{

    transform:translateY(-3px);

}


/*==============================
    RESPONSIVE
==============================*/

@media(max-width:768px){

.shop_table thead{

    display:none;

}

.shop_table tr{

    display:block;

    margin-bottom:20px;

    background:#fff;

}

.shop_table td{

    display:flex;

    justify-content:space-between;

    width:100%;

}

.coupon{

    flex-direction:column;

}

}

/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 5
= MY ACCOUNT & DASHBOARD
=
==================================================*/


/*==============================
    MY ACCOUNT WRAPPER
==============================*/

.woocommerce-account .woocommerce{

    display:flex;
    gap:40px;
    align-items:flex-start;
    margin:60px 0;

}


/*==============================
    LEFT MENU
==============================*/

.woocommerce-MyAccount-navigation{

    width:280px;
    flex:0 0 280px;

    background:#fff;

    border-radius:25px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.woocommerce-MyAccount-navigation ul{

    margin:0;
    padding:0;
    list-style:none;

}

.woocommerce-MyAccount-navigation li{

    margin-bottom:12px;

}

.woocommerce-MyAccount-navigation li:last-child{

    margin-bottom:0;

}

.woocommerce-MyAccount-navigation a{

    display:flex;
    align-items:center;

    height:50px;

    padding:0 18px;

    border-radius:12px;

    color:#333;

    background:#f8f8f8;

    font-weight:500;

}

.woocommerce-MyAccount-navigation .is-active a{

    background:#c89820;

    color:#fff;

}

.woocommerce-MyAccount-navigation a:hover{

    background:#c89820;

    color:#fff;

}


/*==============================
    RIGHT CONTENT
==============================*/

.woocommerce-MyAccount-content{

    flex:1;

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


/*==============================
    DASHBOARD
==============================*/

.ag-dashboard{

    width:100%;

}

.ag-dashboard-welcome{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fafafa;

    border-radius:20px;

    padding:30px;

    margin-bottom:35px;

}

.ag-user-avatar{

    width:80px;
    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

    font-size:34px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.ag-user-info h2{

    font-size:34px;

    margin-bottom:10px;

    color:#222;

}

.ag-user-info p{

    color:#666;

    line-height:1.8;

}


/*==============================
    DASHBOARD CARDS
==============================*/

.ag-dashboard-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.ag-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.ag-card:hover{

    transform:translateY(-5px);

}

.ag-card-icon{

    font-size:42px;

    color:#c89820;

    margin-bottom:15px;

}

.ag-card-title{

    font-size:18px;

    color:#222;

    font-weight:600;

}


/*==============================
    ADDRESS
==============================*/

.woocommerce-Addresses{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.woocommerce-Address{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.woocommerce-Address h3{

    font-size:28px;

    margin-bottom:20px;

}

.woocommerce-Address address{

    line-height:1.8;

    color:#666;

    font-style:normal;

}

.woocommerce-Address-title a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:45px;

    padding:0 22px;

    margin-top:20px;

    border-radius:40px;

    background:#c89820;

    color:#fff;

}


/*==============================
    ORDERS TABLE
==============================*/

.woocommerce-orders-table{

    width:100%;

    border:none;

    border-collapse:collapse;

}

.woocommerce-orders-table th{

    background:#c89820;

    color:#fff;

    padding:16px;

}

.woocommerce-orders-table td{

    padding:16px;

    border-bottom:1px solid #eee;

}


/*==============================
    DOWNLOADS
==============================*/

.woocommerce-table{

    width:100%;

    border-collapse:collapse;

}

.woocommerce-table th{

    background:#c89820;

    color:#fff;

    padding:16px;

}

.woocommerce-table td{

    padding:16px;

    border-bottom:1px solid #eee;

}


/*==============================
    FORMS
==============================*/

.woocommerce-account input,
.woocommerce-account select{

    width:100%;

    height:50px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    margin-bottom:18px;

}

.woocommerce-account textarea{

    width:100%;

    min-height:140px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:15px;

}


/*==============================
    SAVE BUTTON
==============================*/

.woocommerce-account button.button{

    height:50px;

    padding:0 30px;

    border:none;

    border-radius:40px;

    background:linear-gradient(135deg,#c89820,#e0b84f);

    color:#fff;

}


/*==============================
    LOGIN / REGISTER
==============================*/

.woocommerce-form-login,
.woocommerce-form-register{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


/*==============================
    MOBILE
==============================*/

@media(max-width:991px){

.woocommerce-account .woocommerce{

    flex-direction:column;

}

.woocommerce-MyAccount-navigation{

    width:100%;

    flex:0 0 100%;

}

.woocommerce-MyAccount-content{

    width:100%;

}

.woocommerce-Addresses{

    grid-template-columns:1fr;

}

.ag-dashboard-cards{

    grid-template-columns:1fr;

}

.ag-dashboard-welcome{

    flex-direction:column;

    text-align:center;

}

}

/*==================================================
=
= ATHAARV GURUJI
= MAIN CSS
= PART 6
= GLOBAL WOOCOMMERCE FIXES
=
==================================================*/


/*==============================
    BREADCRUMB
==============================*/

.woocommerce-breadcrumb{

    margin-bottom:30px;

    color:#777;

    font-size:15px;

}

.woocommerce-breadcrumb a{

    color:#c89820;

}

.woocommerce-breadcrumb a:hover{

    color:#b8860b;

}


/*==============================
    PAGINATION
==============================*/

.woocommerce-pagination{

    margin:60px 0;

    text-align:center;

}

.woocommerce-pagination ul{

    display:inline-flex;

    gap:12px;

    border:none !important;

    padding:0;

}

.woocommerce-pagination li{

    list-style:none;

    border:none !important;

}

.woocommerce-pagination a,
.woocommerce-pagination span{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f6f6f6;

    color:#222;

    font-weight:600;

}

.woocommerce-pagination .current{

    background:#c89820;

    color:#fff;

}


/*==============================
    NOTICES
==============================*/

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{

    border:none;

    border-left:5px solid #c89820;

    border-radius:12px;

    padding:18px 22px;

    margin-bottom:25px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.woocommerce-error{

    border-left-color:#dc3545;

}

.woocommerce-message{

    border-left-color:#28a745;

}

.woocommerce-info{

    border-left-color:#0d6efd;

}


/*==============================
    FORM FOCUS
==============================*/

.woocommerce input:focus,
.woocommerce textarea:focus,
.woocommerce select:focus{

    outline:none;

    border-color:#c89820;

    box-shadow:0 0 0 4px rgba(200,152,32,.12);

}


/*==============================
    TABLES
==============================*/

.woocommerce table{

    width:100%;

    border-collapse:collapse;

}

.woocommerce table th{

    font-weight:600;

}


/*==============================
    LINKS
==============================*/

.woocommerce a{

    color:#c89820;

    transition:.3s;

}

.woocommerce a:hover{

    color:#a77900;

}


/*==============================
    STAR RATING
==============================*/

.woocommerce .star-rating{

    color:#c89820;

}


/*==============================
    STOCK
==============================*/

.stock{

    font-weight:600;

}

.stock.in-stock{

    color:#28a745;

}

.stock.out-of-stock{

    color:#dc3545;

}


/*==============================
    SALE BADGE
==============================*/

.woocommerce span.onsale{

    background:#c89820;

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}


/*==============================
    LOADER
==============================*/

.woocommerce .blockUI.blockOverlay{

    opacity:.35 !important;

}


/*==============================
    BUTTON TRANSITION
==============================*/

.woocommerce button,
.woocommerce a.button,
.woocommerce input.button{

    transition:all .3s ease;

}

.woocommerce button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover{

    transform:translateY(-2px);

}


/*==============================
    RESPONSIVE
==============================*/

@media(max-width:991px){

    .container{

        padding-left:20px;

        padding-right:20px;

    }

}

@media(max-width:768px){

    .woocommerce-pagination ul{

        gap:8px;

    }

    .woocommerce-pagination a,
    .woocommerce-pagination span{

        width:40px;

        height:40px;

    }

}


/*==============================
    END OF FILE
==============================*/




