@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Festive&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html,
body {
    width: 100%;
    height: 100%;
}

.loader {
    height: 100vh;
    width: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader_img {
    width: 0px;
    height: 400px;
    object-fit: cover;
    position: relative;
    animation: resize 1s 1 ease-out forwards;
}


@keyframes resize {
    from {
        width: 0px;
    }

    to {
        width: 400px;
    }
}



.content {
    height: 100%;
    width: 100%;
}
.main_content {
    width: 100%;
    height: 65vh;
    position: relative;
}

.main_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.main_img .swiper {
    width: 100%;
    height: 100%;
}

.main_img .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.main_img .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.main_img_link {
    position: absolute;
    top: 85%;
    left: 30%;
    z-index: 8;
    font-size: 1ntrem;
    box-shadow: 0px 0px 20px #dfbe02;
    padding: 8px 20px;
    color: #dfbe02;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    width: 40%;
    background-color: black;
    transition: .2s all ease-in-out;
}

.main_img_link:Hover {
    background-color: #dfbe02cb;
    scale: 1.02;
    box-shadow: 0px 0px 10px #000;
    color: #000;
}

.main_cata {
    height: 35%;
    width: 100%;
    padding: 20px 0px;
}

.main_cata>h1 {
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    position: relative;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
}

.main_cata>h1::after {
    position: absolute;
    border-radius: 10px;
    top: 52%;
    right: 0%;
    width: 42%;
    height: 2px;
    content: " ";
    background-color: #ddd;
}

.main_cata>h1::before {
    border-radius: 10px;
    position: absolute;
    top: 52%;
    left: 0%;
    width: 42%;
    height: 2px;
    content: " ";
    background-color: #ddd;
}

.main_cata>.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 40px;
    width: 100%;
    height: 80%;
    padding: 20px;
    place-content: center;
}


.section {
    height: 100px;
    border-radius: var(--border-radius);
    display: flex;
    width: 100%;
    box-shadow: 0px 4px 12px var(--shadow-color);
    overflow: hidden;
}

.section>form {
    background: #fff;
    width: 100%;
    height: 100%;
    transition: var(--transition-duration) all ease-in-out;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.section>form>button {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: var(--border-radius);
    border: none;
    font-size: var(--button-font-size);
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: #333;
}

.section .cat_img {
    border-radius: 5px;
    height: 100%;
    width: 60%;
    background: black;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    transition: 0.2s all ease-in-out;
}

.section .catagory {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    font-size: var(--category-font-size);
    font-weight: 600;
    height: 100%;
    color: #333;
    text-align: center;
    transition: 0.2s all ease-in-out;

}

.section:hover {
    scale: 1.02;
    box-shadow: 0px 6px 20px var(--shadow-color);
    border-radius: 5px;
}

.section:hover button {
    background-color: black;
}

.section:hover .catagory {
    color: #fff;
}

.section>form>button:focus {
    outline: 2px solid var(--primary-color);
}


.product_sec {
    height: max-content;
    width: 100%;
    padding: 20px 0px;
}

.title {
    height: 9%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.title::after {
    content: "";
    position: absolute;
    top: 55%;
    right: 0%;
    height: 2px;
    width: 35%;
    border-radius: 20px;
    background: #ddd;
}

.title::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0%;
    height: 2px;
    width: 35%;
    border-radius: 20px;
    background: #ddd;
}

.product_sec>.p {
    height: 6%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
}

.product_sec>.p>p {
    padding: 5px 10px;
    width:max-content;
    color: #dfbe02;
    border-left: 10px solid #dfbe02;
}

.cata_main {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px 60px;
}

.cata_main button {
    margin-top: 100px;
    border-radius: 5px;
    background: #2222229c;
    color: #dfbe02;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    transition: .2s all ease-in-out;
    font-weight: bolder;
    background-color: none;
    border: none;
    cursor: pointer;
}

.cata1 {
    border-radius: 5px;
    background-image: url("../images/man.jpg");
    height: 100%;
    width: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    display: flex;
    justify-content: CENTER;
    align-items: CENTER;
    box-shadow: 2px 2px 10px black;
}

.cata1>p {
    margin-top: 100px;
    border-radius: 5px;
    background: #2222229c;
    color: #dfbe02;
    font-size: 1.2rem;
    text-decoration: none;
    transition: .2s all ease-in-out;
    padding: 10px 20px;
    font-weight: bolder;
}

.cata1:hover,
.cata1:hover p {
    scale: 1.1;
    transition: .2s all ease-in-out;
}

.cata2 {
    border-radius: 5px;
    background-image: url("../images/women_cata.jpg");
    height: 100%;
    width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    display: flex;
    justify-content: CENTER;
    align-items: CENTER;
    box-shadow: 2px 2px 10px black;
}

.cata2>p {
    margin-top: 100px;
    border-radius: 5px;
    background: #2222229c;
    color: #dfbe02;
    font-size: 1.2rem;
    text-decoration: none;
    transition: .2s all ease-in-out;
    padding: 10px 20px;
    font-weight: bolder;
}

.cata2:hover,
.cata2:hover p {
    scale: 1.1;
    transition: .2s all ease-in-out;
}

.products {
    padding: 20px 40px;
    height: 45%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}
.products_sec {
    padding: 20px !important;
    width: 100%;
    height: 100%;
    /* instead of grid → make it Swiper */
    display: flex;
    align-items: stretch;
}

.products_sec .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.products_sec .swiper-slide {
    flex: 0 0 calc(18% - 20px); /* ~5 per row */
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.product_item {
    position:relative;
    cursor: pointer;
    height: 300px !important;
    transition: .3s all ease-in-out;
    width:220px;
    overflow: hidden;
    margin:0px 5px;
    border: 1px solid white;
    padding: 3px;
    border-radius: 2px;
}


.product_item:hover{
    border: 1px solid #ddd;
}

.product_item>a {
    text-decoration: none;
    height: 100%;
}

.product_item .pro_img {
    width: 100%;
    height: 55% !important;
}

.pro_img {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0px !important;
}

.pro_img>img {
    position: absolute;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s all ease;
}

.product_item:hover #pro_img2 {
    opacity: 0;
}

.pro_title {
    color: #222;
    font-size: 0.8rem;
    height: 17%;
    padding: 2px 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.pro_cata {
    height: 5%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px;
    color: #555;
    font-size: .7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount_perc {
    position: absolute;
    left: 0px;
    top: 5px;
    color: white;
    font-size: .7rem;
    padding: 2px 5px;
    background-color: rgb(199, 2, 2);
    z-index: 8 !important;
}

.pro_price {
    height: 10%;
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
}

.pro_price>.sale_price {
    text-transform: initial;
    color: #dfbe02;
    font-weight: bold;
}

.original_price {
    text-transform: initial;
    color: #777;
    font-size: .8rem;
    padding: 2px 5px;
    text-decoration: line-through;
}

.pur_option {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 12%;
    padding: 2px;
    gap: 5px;
    overflow: hidden;
}

.pur_option .btn_buy {
    width: 100%;
    padding: 5px;
    width: 70%;
    cursor: pointer;
    background: black;
    border-radius: 2px;
    font-weight: bolder;
    border: none;
    transition: .2s all ease;
    font-size: .9rem;
    color: white;
    text-decoration: none;
}
.pur_option .btn_buy a{
    width:100%;
    text-decoration: none;
    color: white;
    height:100%;
}
.pur_option .btn_buy:hover{
    background: #dfbe02;
    color: white;
    scale: 1.02;
}

.pur_option .add_cart {
    padding: 2px;
    height: 100%;
    width: 25%;
    border: 2px solid #dfbe02;
    border-radius: 3px;
}

.pur_option .add_cart form {
    height: 100%;
    width: 100%;
}

.pur_option>.add_cart .cart_btn {
    width: 100%;
    background: none;
    height: 100%;
    border:none;
    cursor: pointer;
    color: #dfbe02;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: .2s all ease-in-out;
}
.quickcheckout_box {
    position: fixed;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    z-index: 2000 !important;
    justify-content: end;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.3); /* Optional: background dimming */
    pointer-events: none;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.quickcheckout_box.active {
    height: 100%;
    opacity: 1;
    pointer-events: auto;
}


.quickcheckout_box > .quickcheckout_form {
    background: #fff;
    width: 700px;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.quickcheckout_box.active > .quickcheckout_form {
    transform: translateY(0);
    opacity: 1;
}

.quickcheckout_cancel_btn {
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quickcheckout_header {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40% ;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.quickcheckout_header>.quickcheckout_image {
    width: 30%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
}

.quickcheckout_header>.quickcheckout_image>img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.quickcheckout_header>span {
    font-size: 1rem;
    overflow: hidden;;
    font-weight: 600;
    width: 30%;
    color: #333;
}

.quickcheckout_discount {
    position: absolute;
    top: -8px;
    right: -16px;
    background: #dfbe02;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 8px 8px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quickcheckout_colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 40%;
    margin-top: 10px;
}

.quickcheckout_color_option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;;
    transition: 0.2s;
}

.quickcheckout_color_option>input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.quickcheckout_color_option>label {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.quickcheckout_color_option>input:checked~label {
    background: black;
    color: white;
    border-radius: 5px;
}

.quickcheckout_pricing {
    width: 100% !important;
    height: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row !important;
}

.quickcheckout_pricing>.quickcheckout_quantity {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quickcheckout_quantity_field {
    width: 35px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.quickcheckout_btn {
    cursor: pointer;
    padding: 2px 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 0.9rem;
    transition: 0.2s;
}

.quickcheckout_btn:hover {
    background: #eee;
}

.quickcheckout_pricing>.quickcheckout_price_display {
    width: 40%;
    text-align: right;
    
}

.quickcheckout_price_display .quickcheckout_o_price {
    font-size: .8rem;
    text-decoration: line-through;
    font-weight: bold;
    color: rgb(199, 2, 2);
}

.quickcheckout_price_display .quickcheckout_s_price {
    font-weight: bold;
    font-size: 1rem;
    color: green;
    
}

.quickcheckout_submit_btn {
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    background-color: #111;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quickcheckout_submit_btn:hover {
    background-color: #333;
}

.pur_option>.add_cart .cart_btn:hover {
    background: #dfbe02;
    scale: 1.02;
    color: white;
}

.pur_option>.add_cart .cart_btn:hover {
    background: #dfbe02;
    scale: 1.02;
    color: white;
}

.products_view_page {
    width: 100%;
    padding: 40px 60px;
    min-height: 100vh;
    border-top: 1px solid #ddd;


}

.products_page_title {
    background-image: url("../images/elevate.png");
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-position: calc(70% - 20px) center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.products_page_title>h1 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    color: #dfbe02;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: "Festive", cursive;
}

.products_page_title>h2 {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.view_products {
    padding: 20PX;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 25PX;
}
.women_clothing {
    width: 100%;
    background: linear-gradient(90deg, #1a1a1a, #555);
    color: white;
    height: 100%;
    padding: 10px;
}

.women_clothing_content {
    display: flex;
    height: 80%;
}

.women_cloth_title {
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 10px;
}

.women_cloth_title h1 {
    color: #dfbe02;
    font-size: 2rem;
    height: 20%;
    min-width: 100%;
}

.women_cloth_title h1::before {
    content: " ";
    padding: 0px 5px;
    margin-right: 10px;
    height: 100%;
    width: 100%;
    background: #dfbe02;
}

.women_cloth_title p {
    margin-left: 80px;
}
.women_cloth_title .swiper {
    height: 90%;
    padding: 20px;
    border-radius: 5px;
}

.women_cloth_title .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a, #555) !important;
} 

.women_cloth_title .swiper .swiper-slide {
    display: flex;
    margin: 0px 15px 0px 0px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1a1a1a, #555) !important;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.women_cloth_title .swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;  
    border-radius: 2px;
}
 
.slid_btn {
    color: #dfbe02 !important;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
}


.women_pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    position: relative;
}

.women_pic>h3 {
    padding: 5px 10px;
    text-align: right;
}

.btn_libas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn_libas>a {
    border: none;
    background: black;
    color: white;
    font-size: 1.2rem;
    font-weight: bolder;
    margin: 30px 0px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 5px black;
    transition: .2s all ease;
    width: 40%;
    color: white;
    text-decoration: none;
}


.btn_libas>a:hover {
    transform: translateY(-5px);
}

.women_pic .img_1 {
    height: 250px;
    width: 300px;
    position: absolute;
    right: 10%;
    box-shadow: 0px 0px 5px white;
    top: 10%;
    border-radius: 5px;
}

.women_pic .img_2 {
    height: 250px;
    border-radius: 5px;
    width: 300px;
    position: absolute;
    left: 5%;
    box-shadow: 0px 0px 5px white;
    top: 30%;
}

.women_pic .img_3 {
    height: 250px;
    border-radius: 5px;
    width: 300px;
    position: absolute;
    box-shadow: 0px 0px 5px white;
    right: 0%;
    top: 50%;
}

.luxury_sec {
    border-top: 1px solid #dfbe02;
    width: 100%;
    padding: 40px;
    background: linear-gradient(90deg, #1a1a1a, #555);
    color: #dfbe02;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.luxury_sec>h1 {
    color: #dfbe02;
    font-size: 2rem;
    height: 20%;
    width: 100%;
}

.luxury_sec>h1::before {
    content: " ";
    padding: 5px 10px;
    border-radius: 0px 10px 0px 0px;
    margin-right: 10px;
    height: 100%;
    width: 100%;
    background: #dfbe02;
}

.luxury_content {
    padding: 20PX;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 25PX;
}
.luxury_content>.product_item{
    border: none;
}
.luxury_content .pro_title,.luxury_content .pro_cata{
    color: white !important;
}
.luxury_sec>form>button {
    border: none;
    background: #dfbe02;
    color: white;
    font-size: 1.5rem;
    font-weight: bolder;
    margin: 50px 0px;
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    transform: rotateY(20deg) rotateX(20deg);
}

.luxury_sec>form>button>i {
    transform: rotateY(20deg) rotateX(20deg);
    margin: 0px 10px;
}

.luxury_sec>form>button:hover {
    transform: perspective(1000px);
    background: white;
    color: #dfbe02;
    transition: .2s all ease;
}

.reviews {
    height: 90%;
    overflow: hidden;
    width: 100%;
    padding: 20px;
}

.rev_heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 10%;
    position: relative;
    padding: 10px;
}

.rev_heading>h1 {
    width: 48%;
    font-size: 1.5rem;
    border-bottom: 2px solid #dfbe02;
}

.review_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90%;
    width: 100%;
    padding: 20px;
}

.reviews_section {
    overflow-y: scroll;
    width: 50%;
    height: 100%;
}

.rev_cus {
    padding: 15px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cus_name {
    font-size: .8rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
}

.cus_name>span {
    color: #555;
    font-size: .7rem;
}

.cus_des {
    padding: 10px;
}

.cus_star {
    height: 10%;
    text-align: center;
    padding: 10px;
    background: #dfbe02;

}

.rev_form {
    width: 50%;
    height: 100%;
    padding: 20px;
}

.rev_form>form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rev_form>form>.rev_label {
    width: 100%;
    padding: 0px 10px;
    color: #888;
    font-size: .8rem;
}

.rev_form>form>.rev_input {
    width: 80%;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 3px;
    border-bottom: 4px solid #dfbe02;
    background: #caac0388;
}

.rev_form>form>.rev_input:focus {
    background: none;
    transition: .3s all ease-in-out;
}

.form_submit {
    border: none;
    background: #dfbe02;
    color: white;
    font-size: 1rem;
    font-weight: bolder;
    margin: 20px 0px;
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    transform: rotateY(20deg) rotateX(20deg);
}

.form_submit:hover {
    transform: perspective(1000px);
    transition: .2s all ease;
}

.guaranty_sec {
    width: 100%;
    overflow: hidden;
}

.guaranty_sec>img {
    width: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}


@media screen and (min-width: 700px) and (max-width: 1100px) {

    .main_cata {
        border-bottom: 2px solid #ddd;
        padding: 20px;
    }

    .main_cata>h1 {
        font-size: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main_cata>h1::before,
    .main_cata>h1::after {
        top: 45%;
        height: 2px;
    }

    .section .catagory {
        font-size: .8rem;
    }

    .title {
        font-size: 2rem;
    }

    .product_sec>.p {
        font-size: 1rem;
    }

    

    .card {
        flex: 0 0 calc(33% - 20px);
    }

    .card .slider-images {
        min-height: 60% !important;
        overflow: hidden;
        object-fit: cover;
    }

    .slider-images>img {
        object-fit: cover;
        height: 100% !important;
        width: 100%;
    }

    .p_title {
        font-size: .7rem;
    }

    .p_s_price {
        font-size: 1rem;
    }

    .p_o_price {
        font-size: .7rem;
    }

    .p_disc {
        font-size: .8rem;
    }

    .products_view_page {
        padding: 40px;
    }

    .view_products {
        gap: 20px 10px;
    }

    .women_cloth_title {
        padding: 10px;
    }

    .women_cloth_title .swiper {
        height: 50%;
        margin: 20px 0px;
        border-radius: 5px;
    }

    .women_pic>.img_1 {
        height: 200px;
        width: 250px;
    }

    .women_pic>.img_2 {
        height: 200px;
        width: 250px;
        top: 30%;
    }

    .women_pic>.img_3 {
        height: 200px;
        width: 250px;
        top: 50%;
    }

    .luxury_sec>h1 {
        font-size: 2rem;
    }

    .luxury_card {
        width: calc(25% - 20px);
        height: 350px;
    }

    .lux_dis {
        font-size: .8rem;
    }

    .luxury_card .lux_price>.s_price {
        font-size: 1rem;
    }

    .luxury_card .lux_price>.o_price {
        font-size: .8rem;
    }

    .buy_btn_lux {
        font-size: 1rem;
    }

    .luxury_sec>button {
        font-size: 1.5rem;
    }

    .rev_heading>h1 {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 699px) {
    .loader_img {
        width: 0px;
        height: 300px;
        object-fit: cover;
        position: relative;
        animation: resize 1s 1 ease-out forwards;
    }


    @keyframes resize {
        from {
            width: 0px;
        }

        to {
            width: 300px;
        }
    }


    .cont_image_btn {
        bottom: 5% !important;
    }
    .main_content {
        height: 70%; 
        position: relative;
    }
    
    .main_img {
        height: 100%;
        width: 100%;
    }
    .main_img_link{
        font-size:1rem;
    }
    .main_img .swiper {
        height: 100%;
    }
    
    .main_img .swiper-wrapper,
    .main_img .swiper-slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main_img .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    
    .main_cata {
        height: fit-content;
        padding: 10px 10px 30px 10px;
    }

    .main_cata>h1 {
        font-size: 1.5rem;
    }

    .main_cata>h1::after,
    .main_cata>h1::before {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ddd;
        height: 1px !important;
        top: 51%;
        width: 27%;
    }

    .main_cata>.container {
        height: max-content;
        display: grid;
        place-items: center;
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
        gap: 8px !important;
    }

    .section {
        overflow: hidden;
        display: flex;
        justify-content: center;
        height: 80px;
    }


    .section:nth-child(3) {
        grid-column: span 2;
        height: 100px;
        font-size: 1rem !important;
        width: 100%;
    }

    .section .catagory {
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: .7rem;
    }

    .product_sec {
        height: max-content;
        padding:0px;
    }

    .product_sec>.title {
        font-size: 1.5rem;
    }

    .product_sec>.title::after,
    .product_sec>.title::before {
        width: 13%;
        top: 50%;
        height: 1px;
    }

    .product_sec>.p {
        padding:10px;
        font-size: .8rem;
    }

    .cata_main {
        height: fit-content;
        justify-content: space-between;
        flex-direction: column;
        align-items: initial;
        padding: 0px 20px;
        width: 100%;
    }

    .cata1,
    .cata2 {
        margin: 10px 0px;
        width: 90%;
        padding: 0px;
        height: 130px;
        position: relative;
    }

    .cata1 {
        align-items: flex-start;
    }

    .cata2 {
        margin-left: 10%;
    }

    .cata1 button,
    .cata2 button {
        position: absolute;
        bottom: 20%;
        font-size: 1rem;
        padding: 5px 10px;
    }

    .products {
        padding: 0px;
        height: max-content;
    }
    .products_sec {
        padding: 10px 5px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .product_item {
        width: 150px;
        min-height: 250px !important;
        max-height: 250px;
    }

    .products_sec .discount_perc {
        font-size: .6rem;
        top: 1%;
        left: 2%;
        padding: 5px;
    }

    .products_sec .pro_img {
        height: 55%;
    }

    .p_title {
        font-size: .8rem;
    }

    .pro_cata {
        border-bottom: 1px solid #ddd;
    }

    .pro_cata>p {
        font-size: .7rem;
        padding: 4px 0px;
    }

    .original_price {
        font-size: .7rem !important;
    }

    .sale_price {
        font-size: .8rem;
    }

    .pur_option>form>.btn_buy {
        font-size: 1rem;
    }

    .products_page_title{
        background-position: calc(100%) center;
    }
    .products_page_title>h1{
        font-size: 2.3rem;
    }
    .products_page_title>h2{
        font-size: 1rem;
        text-decoration: underline;
    }
    .products_view_page {
        padding: 20px 10px 20px 10px;
    }

    .products_view_page>h1 {
        font-size: 1rem;
    }
    
    .view_products {
        padding: 15px 5px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .quickcheckout_discount{
        padding:5px;
    }
    .quickcheckout_btn{
        padding: 8px 10px;
        border-radius: 2px;
        font-size: 0.8rem;
        
    }
    .shop_product {
        overflow: visible;
        padding: 0px;
        width: 45%;
        height: 300px;
    }

    .shop_product-images {
        overflow: hidden;
        min-height: 65% !important;
    }

    .shop_product-images>img {
        height: 100%;
    }

    .shop_pro_title {
        height: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
        font-size: .7rem;
    }

    .shop_pro_price {
        padding: 5px;
        gap: 5px;
    }

    .shop_pro_o_price {
        font-size: .7rem;
    }

    .shop_pro_s_price {
        font-size: 1rem;
    }

    .shop_pro_disc {
        top: 2%;
        left: 5%;
        padding: 3px;
        border-radius: 0px;
        font-size: .7rem;
    }

    .shop_favourite_btn button {
        top: 1%;
        right: 2%;
        overflow: visible;
        padding: 15px;
    }

    .shop_product .shop_pro_detail_btn {
        margin: 0PX;
        height: 5%;
        width: 100%;
        padding: 5px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }

    .shop_product .shop_pro_detail_btn a {
        border-radius: 2px;
        padding: 5px 10px;
        font-size: .9rem;
    }

    .women_clothing {
        height: 100%;
    }

    .women_clothing_content {
        object-fit: cover;
        display: flex;
        flex-direction: column;
    }

    .women_clothing_content>.swiper>.swiper-slide {
        object-fit: cover;
    }

    .women_cloth_title {
        width: 100%;
        height: 70%;
        overflow: hidden;
    }

    .title_libas>h1 {
        font-size: 2rem;
    }

    .title_libas>p {
        font-size: .8rem;
    }

    .women_pic {
        height: 20%;
        flex-direction: column;
        width: 100%;
    }

    .women_pic>h3 {
        position: relative;
        font-size: .7rem;
        margin: 10px 0px;
        width: 100%;
        text-align: start;
    }

    .women_pic>h3::after {
        content: "";
        position: absolute;
        right: 0%;
        top: 47%;
        height: 2px;
        width: 25%;
        border-radius: 2px;
        background-color: #dfbe02;
    }

    .women_pic img {
        width: 50px;
        height: 50px;
    }

    .images {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .women_pic .img_1,
    .women_pic .img_2,
    .women_pic .img_3 {
        position: initial;
        height: 100%;
        width: 30%;
        object-fit: cover;
    }

    .btn_libas>a {
        width: 60%;
        font-size: 1rem;
    }

    .luxury_sec {
        padding: 30px 10px;
    }

    .luxury_sec>h1 {
        width: 100%;
        font-size: 1.3rem;
    }

    .luxury_content {
        padding: 25px 15px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .luxury_card {
        height: 280px;
        padding: 5px;
        width: calc(50% - 10px);
        filter: blur(0px);
        border-radius: 5px;
        overflow: hidden;
        border: 2px solid #dfbe022c;
        background: #222;
        transition: .2s all ease;
        position: relative;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    }

    .lux_dis {
        top: 0%;
        left: 0%;
        border-radius: 2px;
        padding: 5px;
        font-size: .7rem;
    }

    .luxury_card img {
        height: 150px;

    }

    .lux_title {
        font-size: .7rem;
        padding: 0px;
    }

    .luxury_card .lux_price>.s_price {
        font-size: 1rem;
    }

    .luxury_card .lux_price>.o_price {
        font-size: .7rem;
    }

    .buy_btn_lux {
        font-size: 1rem;
    }

    .luxury_sec>form>button {
        font-size: 1rem;
    }

    .rev_heading {
        flex-direction: column;
        height: max-content;
    }

    .rev_heading>h1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        padding: 5px;
    }

    .rev_heading>h1:nth-child(2) {
        display: none;
    }

    .reviews {
        height: fit-content;
    }

    .review_content {
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding:10px;
    }

    .reviews_section {
        width: 100%;
        height: 520px;

    }

    .reviews_section {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        padding: 10px;
        scroll-snap-type: x mandatory;
        border-radius: 10px;
        box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.2);
    }

    .rev_cus {
        width:100%;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.1);
        scroll-snap-align: start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .rev_cus:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 30px rgba(255, 215, 0, 0.3);
    }

    .cus_name {
        font-size: .7rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #dfbe02;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        padding-bottom: 5px;
    }

    .cus_name>span {
        font-size: .5rem;
    }

    .cus_des p {
        font-size: 0.7rem;
        margin-top: 8px;
    }

    .cus_star {
        padding:5px;
        height: fit-content;
    }

    .cus_star p {
        font-size: 1rem;
        padding: 0px;
        color: gold;
    }

    .rev_form {
        width: 100%;
        height: 50%;
        padding: 10px;
    }

    .rev_form>form>.rev_label {
        font-size: .8rem;
        padding: 5px;
    }

    .rev_form>form>.rev_input {
        width: 85%;

    }

    .form_submit {
        font-size: 1rem;
    }
   .quickcheckout_box > .quickcheckout_form{
        height:200px;
    }
    .quickcheckout_header{
        height:60%;
    }
    .quickcheckout_discount{
        padding:5px;
    }
    .quickcheckout_btn{
        padding: 5px 7px;
        border-radius: 2px;
        font-size: 0.8rem;
        
    }
     .quickcheckout_image{
        width: 25%;
    }
    .quickcheckout_box > .quickcheckout_form{
        padding: 5px;
    }
    .quickcheckout_header span{
        width: 35%;
        font-size: .8rem !important;
    }
    .quickcheckout_colors{
        gap: 3px;;
    }
    .quickcheckout_color_option>label{
        padding: 5px;
        font-size: .8rem;
    }
    .quickcheckout_pricing{
        height:40%;
        padding:5px 10px;
        border-radius: 2px;
        font-size: 0.8rem;
    }
    .quickcheckout_pricing>.quickcheckout_price_display{
     padding:0px 5px;   
    }
    .quickcheckout_price_display .quickcheckout_o_price{
        font-size:0.75rem;
    }
    .quickcheckout_price_display .quickcheckout_s_price{
        font-size:1rem;
    }
    .quickcheckout_box .quickcheckout_submit_btn{
        padding:10px;
        font-size:0.9rem;
        border-radius:5px;
    }
    .quickcheckout_quantity_field{
        padding:5px 7px;
        font-size:0.9rem;
    }
}