body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}


a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */


/* header start */

.navbar-custom {


    /* position: relative; */

    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    background: transparent;
    /* border-bottom: 1px solid #bdbcbc; */
    /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */

    transition: top 0.3s, background-color 0.3s;

}

.navbar-brand img {
    width: 140px;
}

.nav-link,
.navbar-brand,
.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

.offcanvas-end {
    background-color: #ffffff;
}

.sticky-scroll {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* .offcanvas-body{
   
    display: flex !important;
    justify-content:center !important;
} */


.navbar-nav {
    display: flex;
    justify-content: end;

}

.navbar-nav a {
    color: #676767 !important;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 17px;
    font-weight: 400;
    /* letter-spacing: 2px; */
    font-family: "Assistant", sans-serif;

    /* transition: color 0.3s ease;
    position: relative; */

    /* text-align: center !important; */
}


/* .navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e0aaff;
  transition: width 0.3s ease;
} */

.navbar-nav a:hover {
    /* color: #10002b !important; */
    color: #000000 !important;
}

.navbar-nav a:hover::after {
    width: 100%;
}



.navbar-nav .active a {
    /* color: #10002b !important; */
    color: #000000 !important;
}




.navbar-toggler span {
    color: #000000 !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;

}






.header-actions {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
}

.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    color: #000000;
    font-size: 13px;
    transition: background-color .25s ease, color .25s ease;
}

.header-action:hover {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}


/* Category dropdown */

.category-nav-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.category-nav-dropdown .dropdown-toggle::after {
    display: none;
}

.category-nav-dropdown .category-caret {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-nav-dropdown.show .category-caret {
    transform: rotate(180deg);
}

.category-nav-dropdown .dropdown-menu {
    margin-top: 18px !important;
    min-width: 250px;
    padding: 10px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateY(10px);
    animation: categoryDropdownIn 0.25s ease forwards;
}

@keyframes categoryDropdownIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-nav-dropdown .dropdown-header {
    padding: 8px 14px 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9a9a !important;
    font-family: "Assistant", sans-serif;
}

.category-nav-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 8px;
    color: #4a4a4a !important;
    font-size: 15px;
    font-weight: 400;
    font-family: "Assistant", sans-serif;
    transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.category-nav-dropdown .dropdown-item::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
    font-size: 11px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.category-nav-dropdown .dropdown-item:hover,
.category-nav-dropdown .dropdown-item:focus {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding-left: 18px;
}

.category-nav-dropdown .dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}




@media(max-width:992px) {
    .navbar-custom .container {
        position: relative;
    }

    .navbar-toggler {
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .offcanvas-body {
        display: flex !important;
        justify-content: left !important;
    }

    .header-actions {
        display: none;
    }

    .header-actions-mobile {
        display: flex;
        position: absolute;
        top: 50%;
        left: 57%;
        z-index: 1;
        transform: translate(-50%, -50%);
        gap: 8px;
    }

    .header-actions-mobile .header-action {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .header-actions-mobile .cart-count {
        top: -6px;
        right: -6px;
        width: 17px;
        height: 17px;
        font-size: 9px;
    }



    .navbar-nav .active {
        background-color: transparent !important;

    }

    .navbar-nav a {
        color: #000000 !important;
    }

    .navbar-nav .active a {
        color: #000000 !important;
    }


}





@media(max-width:576px) {
    .navbar-brand img {
        width: 110px;
    }


    .header-actions-mobile .header-action {
        width: 29px;
        height: 29px;
        font-size: 11px;
    }
}


@media(max-width:370px) {
    .head-top-cta a {
        font-size: 13px;
    }
}


/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */



/* banner start */


.banner-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    --banner-height: clamp(520px, calc(100svh - 82px), 900px);
}


/* Three banner-height panels provide scroll room for the perfume animation. */
.banner-scroll-area {
    height: calc(var(--banner-height) * 3);
    position: relative;
}


.banner-section .container {
    width: 100%;
}



.banner-wrapper {
    position: relative;

    width: 100%;
    height: var(--banner-height);

    background: #ffffff;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


.banner-bg-text {
    position: absolute;

    top: 48%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;

    text-align: center;

    font-family: "Times New Roman", Georgia, serif;

    font-size: clamp(90px, 15vw, 190px);

    font-weight: 400;

    letter-spacing: -8px;

    line-height: 1;

    color: rgba(171, 144, 105, 0.20);

    white-space: nowrap;

    pointer-events: none;
    user-select: none;

    z-index: 1;
}



.banner-product {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -51%);

    /* width: 245px; */
    width: 100%;
    height: 410px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 4;
}



.perfume-image {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    filter: drop-shadow(0 25px 22px rgba(0, 0, 0, 0.20));

    opacity: 0;

    will-change: transform, opacity;

    /* transform: rotate(20deg); */
}


/*
    First image visible initially
*/

.perfume-image-1 {
    opacity: 1;
}


/* =========================================
   PRODUCT LABEL
========================================= */

/* .banner-product::after {

    content: "RAREPERFO";

    position: absolute;

    bottom: -5px;

    left: 50%;

    transform: translateX(-50%);

    font-family: Georgia, serif;

    font-size: 6px;

    letter-spacing: 1px;

    color: #555;

    white-space: nowrap;
} */


/* =========================================
   TOP FLOWER
========================================= */

.banner-flower {

    position: absolute;

    top: 72px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    color: rgba(166, 135, 94, 0.55);

    font-size: 24px;
}


/* =========================================
   LEFT DECORATION
========================================= */

.banner-dot {

    position: absolute;

    width: 7px;
    height: 7px;

    background: rgba(166, 135, 94, 0.45);

    transform: rotate(45deg);

    z-index: 3;
}

.banner-dot-left {

    left: 55px;
    top: 210px;
}


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

.banner-info {

    position: absolute;

    left: 50%;
    bottom: 55px;

    transform: translateX(-50%);

    z-index: 7;

    display: flex;

    justify-content: center;
    align-items: center;
}


/* =========================================
   GET NOW BUTTON
========================================= */

.banner-btn {

    width: 142px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #777;

    background: transparent;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.banner-btn:hover {

    background: #222;

    color: #fff;

    border-color: #222;
}


/* =========================================
   BOTTOM LINES
========================================= */

.banner-lines {

    position: absolute;

    right: 95px;
    bottom: 62px;

    display: flex;

    align-items: center;

    gap: 12px;

    z-index: 5;
}


.banner-lines span {

    display: block;

    width: 28px;
    height: 2px;

    background: rgba(171, 144, 105, 0.55);
}


.banner-lines span:first-child {

    width: 18px;

    background: #9c6b31;
}


/* =========================================
   RIGHT NAVIGATION
========================================= */

.banner-navigation {

    position: absolute;

    right: 35px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 12px;

    z-index: 7;
}


.nav-dot {

    width: 9px;
    height: 9px;

    border: 1px solid #555;

    border-radius: 50%;

    display: block;

    transition: all 0.3s ease;
}


.nav-dot.active {

    background: #555;

    transform: scale(1.15);
}


/* =========================================
   NEXT SECTION
========================================= */

.next-section {

    min-height: 600px;

    background: #f7f4ef;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 100px 0;
}


.next-content span {

    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #9c6b31;
}


.next-content h2 {

    margin: 0;

    font-family: Georgia, serif;

    font-size: clamp(35px, 5vw, 65px);

    font-weight: 400;

    color: #222;
}



@media (max-width: 991px) {

    .banner-wrapper {

        height: var(--banner-height);
    }


    .banner-bg-text {

        font-size: clamp(75px, 15vw, 145px);

        letter-spacing: -5px;
    }


    .banner-product {

        /* width: 220px; */

        width: 100%;
        height: 370px;
    }


    .banner-info {

        bottom: 45px;
    }


    .banner-lines {

        right: 75px;

        bottom: 50px;
    }


    .banner-navigation {

        right: 25px;
    }


    .banner-flower {

        top: 60px;
    }
}


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

@media (max-width: 767px) {

    .banner-section {

        /* Fill the mobile screen below the navigation without overflowing it. */
        --banner-height: calc(100svh - 64px);
    }

    .banner-scroll-area {

        height: calc(var(--banner-height) * 3);
    }


    .banner-wrapper {

        height: var(--banner-height);
    }


    .banner-bg-text {

        top: 43%;

        font-size: 80px;

        letter-spacing: -5px;
    }


    .banner-product {

        top: 45%;

        /* width: 190px; */
        width: 100%;

        height: 320px;
    }


    .banner-flower {

        top: 55px;

        font-size: 20px;
    }


    .banner-dot-left {

        left: 25px;

        top: 190px;
    }


    /* CENTER BUTTON */

    .banner-info {

        left: 50%;

        bottom: calc(24px + env(safe-area-inset-bottom));

        transform: translateX(-50%);
    }


    .banner-btn {

        width: 128px;

        height: 44px;

        font-size: 12px;
    }


    .banner-lines {

        right: 60px;

        bottom: 42px;

        gap: 7px;
    }


    .banner-lines span {

        width: 20px;
    }


    .banner-lines span:first-child {

        width: 14px;
    }


    .banner-navigation {

        right: 18px;

        gap: 9px;
    }


    .nav-dot {

        width: 8px;

        height: 8px;
    }
}




@media (max-width: 480px) {

    .banner-scroll-area {

        height: calc(var(--banner-height) * 3);
    }


    .banner-wrapper {

        height: var(--banner-height);
    }


    .banner-bg-text {

        font-size: 65px;

        letter-spacing: -3px;
    }


    .banner-product {

        /* width: 155px; */
        width: 100%;

        /* height: 275px; */

        top: 43%;
    }


    .banner-flower {

        top: 45px;

        font-size: 18px;
    }


    .banner-info {

        bottom: calc(80px + env(safe-area-inset-bottom));

        /* bottom: 25px; */
    }


    .banner-btn {

        width: 112px;

        height: 40px;

        font-size: 11px;
    }


    .banner-lines {

        right: 45px;

        bottom: 32px;
    }


    .banner-lines span {

        width: 15px;
    }


    .banner-lines span:first-child {

        width: 11px;
    }


    .banner-navigation {

        right: 12px;
    }


    .nav-dot {

        width: 7px;

        height: 7px;
    }


    .banner-dot-left {

        left: 18px;

        top: 160px;

        width: 5px;

        height: 5px;
    }
}

/* banner end */














/* footer start */


.footer-section {
    background: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid #ececec;
}

/* Logo */

.footer-logo {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}

/* About */

.footer-about p {
    color: #676767;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Social */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    text-decoration: none;
    transition: .35s;
}

.footer-social a:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
    transform: translateY(-4px);
}

/* Titles */

.footer-links h4,
.footer-contact h4 {
    color: #111;
    font-size: 20px;
    font-weight: 500;
    font-family: "Lato", sans-serif;
    margin-bottom: 25px;
}

/* Links */

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #676767;
    text-decoration: none;
    transition: .35s;
    font-family: "Assistant", sans-serif;
}

.footer-links a:hover {
    color: #000000;
    padding-left: 6px;
}

/* Contact */

.footer-contact p {
    color: #676767;
    margin-bottom: 20px;
}

.footer-contact>a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #676767;
    text-decoration: none;
    transition: .35s;
    font-family: "Assistant", sans-serif;
}

.footer-contact>a:hover {
    color: #000000;
}

/* Newsletter */



.footer-bottom {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #ececec;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-copy {
    color: #676767;
    text-align: left;
    font-size: 15px;
}

.footer-policy {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-policy a {
    color: #676767;
    text-decoration: none;
    transition: .35s;
    font-size: 15px;
}

.footer-policy a:hover {
    color: #000000;
}

.footer-powered {
    text-align: right;
    color: #676767;
    font-size: 15px;
}

.footer-powered a {
    color: #676767;
    text-decoration: none;
    transition: .35s;
    font-size: 15px;
}

.footer-powered a:hover {
    color: #000000;
}

/* Tablet */

@media(max-width:991px) {

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        display: block;
    }

    .footer-logo img {
        margin: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact>a {
        justify-content: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copy,
    .footer-powered {
        text-align: center;
    }

}

/* Mobile */

@media(max-width:576px) {

    .footer-section {
        padding: 50px 0 20px;
        text-align: left;
    }

    .footer-logo img {
        width: 110px;
        margin: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact>a {
        justify-content: flex-start;
    }



    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-copy,
    .footer-powered {
        text-align: center;
    }

    .footer-policy {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

}

/* footer end */








/* floating btn */

.floating-buttons {
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 9999;
}

.floating-buttons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.floating-buttons a:hover {
    transform: translateY(-5px);
}


.call-btn {
    background-color: #000000;
}


.whatsapp-btn {
    background-color: #25D366;
}

/* end */





/* product section start */

.perfume-products-section {
    padding: 50px 0;
    background: #ffffff;
    /* font-family: "Assistant", sans-serif; */
    color: #000000;
}

.product-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
}

.product-search {
    width: 50%;
}

.product-category-filter {
    width: 260px;
}

.search-box {
    width: 50%;
    height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid #d7d7d7;
    background: #ffffff;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    padding: 0 18px;
    font-family: "Assistant", sans-serif;
    font-size: 15px;
    color: #000000;
    background: transparent;
}

.search-box input::placeholder {
    color: #888888;
}

.search-box button {
    width: 52px;
    height: 100%;
    border: 0;
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}


.product-category-filter select {
    width: 100%;
    height: 48px;
    border: 1px solid #d7d7d7;
    outline: none;
    padding: 0 15px;
    background: #ffffff;
    color: #000000;
    font-family: "Assistant", sans-serif;
    font-size: 15px;
    cursor: pointer;
}



.product-category-block {
    margin-bottom: 90px;
}

.product-category-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-category-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: #000000;
}



.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    color: #000000;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}


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

.product-card {
    width: 100%;
    background: #ffffff;
}

.product-image-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.12;
    overflow: hidden;
    background: #f6f6f6;
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity 0.5s ease,
        transform 0.7s ease;
}

.product-img-main {
    opacity: 1;
}

.product-img-hover {
    opacity: 0;
}

.product-card:hover .product-img-main {
    opacity: 0;
    transform: scale(1.03);
}

.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1.03);
}



.product-info {
    padding-top: 16px;
}

.product-info h3 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.product-info h3 a {
    color: #000000;
    text-decoration: none;
    font-family: "Assistant", sans-serif;
    font-size: 15px;
}



.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

.product-rating i {
    color: #000000;
    font-size: 11px;
}


.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.old-price {
    color: #999999;
    font-size: 14px;
    text-decoration: line-through;
}

.sale-price {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}



.add-cart-btn {
    width: 100%;
    height: 44px;
    border: 1px solid #000000;
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    font-family: "Assistant", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    background: #ffffff;
    color: #000000;
}




.product-item.hidden {
    display: none;
}

.product-category-block.hidden {
    display: none;
}



@media (max-width: 991px) {

    .perfume-products-section {
        padding: 50px 0;
    }

    .product-filter-bar {
        margin-bottom: 55px;
    }

    .product-category-heading h2 {
        font-size: 26px;
    }

    .product-category-block {
        margin-bottom: 70px;
    }

}


@media (max-width: 767px) {

    .perfume-products-section {
        padding: 45px 0;
        padding-bottom: 10px !important;
    }

    .product-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 45px;
    }

    .product-search {
        width: 100%;
    }

    .product-category-filter {
        width: 100%;
    }

    .search-box,
    .product-category-filter select {
        height: 46px;
        width: 100%;
    }


    /* Category title + View All */

    .product-category-heading {
        margin-bottom: 22px;
    }

    .product-category-heading h2 {
        font-size: 21px;
        font-weight: 400;
    }

    .view-all-btn {
        font-size: 14px;
        gap: 5px;
        white-space: nowrap;
    }


    .product-category-block {
        margin-bottom: 55px;
    }


    /* Product */

    .product-info {
        padding-top: 11px;
    }

    .product-info h3 {
        font-size: 14px;

    }

    .product-rating {
        gap: 2px;
        margin-bottom: 5px;
    }

    .product-rating i {
        font-size: 9px;
    }

    .product-price {
        gap: 5px;
        margin-bottom: 10px;
    }

    .old-price {
        font-size: 12px;
    }

    .sale-price {
        font-size: 14px;
    }

    .add-cart-btn {
        height: 40px;
        font-size: 13px;
    }

}



@media (max-width: 400px) {

    .product-category-heading h2 {
        font-size: 19px;
    }

    .view-all-btn {
        font-size: 13px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .add-cart-btn {
        height: 38px;
        font-size: 13px;
    }

}


/* prodcut end */



/* video secton */

.rare-video-section {
    background: #ffffff;
    padding: 50px 0;
    overflow: hidden;
}

.rare-video-heading {
    text-align: center;
    margin-bottom: 45px;
}

.rare-video-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: #000000;
}

/* Video Row */

.rare-video-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.rare-video-slider::-webkit-scrollbar {
    display: none;
}

.rare-video-card {
    flex: 0 0 calc(25% - 19px);
}

/* Video */

.rare-video {
    position: relative;
    width: 100%;
    height: 430px;
    background: #000000;
    overflow: hidden;
}

.rare-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rare-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    color: #000000;
    font-size: 21px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rare-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.rare-video.is-playing .rare-video-play {
    opacity: 0;
    pointer-events: none;
}


/* Description */

.rare-video-content {
    text-align: center;
    padding: 18px 10px 0;
}

.rare-video-content p {
    margin: 0 auto;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: #000000;
}

/* Single Bottom Button */

.rare-video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.rare-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 20px;
    border: 1px solid #777;
    border-radius: 0;

    background: transparent;
    color: #000000;

    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.rare-shop-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.rare-shop-btn:hover {
    color: #000000;
}

.rare-shop-btn:hover i {
    transform: translateX(5px);
}


/* Tablet */

@media (max-width: 991px) {

    .rare-video-section {
        padding: 50px 0;
    }

    .rare-video-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .rare-video {
        height: 400px;
    }
}


/* Mobile */

@media (max-width: 575px) {

    .rare-video-heading h2 {
        font-size: 25px;
    }

    .rare-video-section {
        padding: 30px 0;
    }

    .rare-video-heading {
        margin-bottom: 30px;
    }

    .rare-video-card {
        flex: 0 0 82%;
    }

    .rare-video {
        height: 430px;
    }

    .rare-video-content {
        padding-top: 15px;
    }

    .rare-video-content p {
        font-size: 13px;
    }

    .rare-video-button {
        margin-top: 30px;
    }
}

/* videoo end */


/* tetimoniyal start */


.rare-testimonial-section {
    position: relative;
    background: #ffffff;
    padding: 50px 0;
    overflow: hidden;
}

/* Heading */

.rare-testimonial-heading {
    text-align: center;
    margin-bottom: 50px;
}

.rare-testimonial-heading span {
    display: block;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.rare-testimonial-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: #000000;
}

/* Slider */

.rare-testimonial-slider {
    position: relative;
}

.rare-testimonial-item {
    padding: 15px;
}

/* Card */

.rare-testimonial-card {
    position: relative;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 45px 30px 35px;
    min-height: 390px;
    transition: all 0.4s ease;
}

.rare-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #000000;
}

/* Customer Image */

.rare-testimonial-image {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
}

.rare-testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Stars */

.rare-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rare-testimonial-stars i {
    font-size: 12px;
    color: #c9a45c;
}

/* Text */

.rare-testimonial-text {
    max-width: 390px;
    margin: 0 auto 22px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
}

/* Name */

.rare-testimonial-card h4 {
    margin: 0 0 5px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.rare-testimonial-card>span {
    font-family: "Lato", sans-serif;
    font-size: 11px;
    color: #777777;
}

/* Owl Navigation */

.rare-testimonial-slider .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.rare-testimonial-slider .owl-nav button {
    width: 42px;
    height: 42px;
    border: 1px solid #000000 !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    color: #000000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rare-testimonial-slider .owl-nav button:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

.rare-testimonial-slider .owl-nav button span {
    font-size: 22px;
    line-height: 1;
}

/* Dots */

.rare-testimonial-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.rare-testimonial-slider .owl-dot span {
    width: 6px !important;
    height: 6px !important;
    margin: 5px !important;
    background: #d5d5d5 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rare-testimonial-slider .owl-dot.active span {
    width: 22px !important;
    border-radius: 10px;
    background: #000000 !important;
}


@media (max-width: 991px) {

    .rare-testimonial-section {
        padding: 70px 0;
    }

    .rare-testimonial-heading {
        margin-bottom: 35px;
    }

    .rare-testimonial-item {
        padding: 10px;
    }

    .rare-testimonial-card {
        min-height: 380px;
        padding: 40px 25px 30px;
    }
}



@media (max-width: 575px) {

    .rare-testimonial-section {
        padding: 55px 0;
    }

    .rare-testimonial-heading h2 {
        font-size: 25px;
    }

    .rare-testimonial-heading {
        margin-bottom: 25px;
    }

    .rare-testimonial-item {
        padding: 8px;
    }

    .rare-testimonial-card {
        min-height: auto;
        padding: 35px 22px 30px;
    }

    .rare-testimonial-text {
        font-size: 13px;
    }
}


/* testimoniyal end */



/* product detail page start */

.product-detail-section {
    background: #ffffff;
    padding: 90px 0;
}

/* =========================================
   PRODUCT GALLERY
========================================= */

.product-detail-gallery {
    position: sticky;
    top: 100px;
}

.product-detail-main-image {
    width: 100%;
    height: 620px;
    background: #f7f7f7;
    overflow: hidden;
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-detail-thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.product-detail-thumbs {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.product-detail-thumbs::-webkit-scrollbar {
    display: none;
}

.product-thumb-arrow {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #111111;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.product-thumb-arrow:hover:not(:disabled) {
    background: #111111;
    color: #ffffff;
}

.product-thumb-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.product-thumb {
    flex: 0 0 85px;
    width: 85px;
    height: 85px;
    padding: 0;
    border: 1px solid #dddddd;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb.active {
    border-color: #000000;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-detail-content {
    padding-left: 25px;
}

.product-detail-category {
    margin-bottom: 12px;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #777777;
}

.product-detail-content h1 {
    margin: 0 0 18px;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
}


/* Rating */

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    color: #555555;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #c9a45c;
    font-size: 12px;
}

.rating-separator {
    color: #cccccc;
}


/* Price */

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.detail-old-price {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #999999;
    text-decoration: line-through;
}

.detail-sale-price {
    font-family: "Lato", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #000000;
}


/* Description */

.product-detail-description {
    max-width: 570px;
    margin: 0 0 30px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
}


/* =========================================
   SIZE
========================================= */

.product-option {
    margin-bottom: 28px;
}

.product-option-title {
    margin-bottom: 12px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.product-option-title span {
    margin-left: 5px;
    font-weight: 400;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    min-width: 90px;
    padding: 12px 20px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    color: #000000;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}


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

.quantity-box {
    display: flex;
    width: 130px;
    height: 44px;
    border: 1px solid #dddddd;
}

.quantity-btn {
    width: 42px;
    border: 0;
    background: #ffffff;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
}

.quantity-box input {
    width: 46px;
    border: 0;
    outline: 0;
    background: #ffffff;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: #000000;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 35px;
}

.detail-cart-btn,
.detail-buy-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 0;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-cart-btn {
    flex: 1;
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}

.detail-cart-btn:hover {
    background: #ffffff;
    color: #000000;
}

.detail-buy-btn {
    flex: 1;
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
}

.detail-buy-btn:hover {
    background: #000000;
    color: #ffffff;
}

.detail-buy-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.detail-buy-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   FEATURES
========================================= */

.product-detail-features {
    border-top: 1px solid #eeeeee;
    padding-top: 25px;
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.detail-feature>i {
    width: 25px;
    font-size: 16px;
    color: #000000;
}

.detail-feature div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-feature strong {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.detail-feature span {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #777777;
}


@media (max-width: 991px) {

    .product-detail-section {
        padding: 65px 0;
    }

    .product-detail-gallery {
        position: static;
    }

    .product-detail-content {
        padding-left: 0;
    }

    .product-detail-main-image {
        height: 550px;
    }
}



@media (max-width: 575px) {

    .product-detail-section {
        padding: 45px 0;
    }

    .product-detail-main-image {
        height: 430px;
    }

    .product-detail-content h1 {
        font-size: 25px;
    }

    .detail-sale-price {
        font-size: 18px;
    }

    .detail-old-price {
        font-size: 15px;
    }

    .product-detail-content {
        padding-top: 10px;
    }

    .product-detail-actions {
        flex-direction: row;
        gap: 8px;
    }

    .detail-cart-btn,
    .detail-buy-btn {
        min-width: 0;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-thumb {
        flex-basis: 70px;
        width: 70px;
        height: 70px;
    }

    .product-detail-thumbs-wrapper {
        gap: 8px;
    }

    .product-detail-thumbs {
        gap: 8px;
    }

    .product-thumb-arrow {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
}


/* detail page end */



/* cart page start */

.rare-cart-section {
    background: #ffffff;
    padding: 50px 0 50px;
}

.rare-cart-heading {
    text-align: center;
    margin-bottom: 55px;
}

.rare-cart-heading span {
    display: block;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #777777;
}

.rare-cart-heading h1 {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
}



.rare-cart-items {
    border-top: 1px solid #e8e8e8;
}

.rare-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 90px 115px 90px 25px;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
}


/* Product */

.rare-cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rare-cart-image {
    flex: 0 0 100px;
    width: 100px;
    height: 115px;
    background: #f7f7f7;
    overflow: hidden;
}

.rare-cart-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rare-cart-image:hover img {
    transform: scale(1.05);
}

.rare-cart-product-info span {
    display: block;
    margin-bottom: 7px;
    font-family: "Lato", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #888888;
}

.rare-cart-product-info h3 {
    margin: 0 0 6px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.rare-cart-product-info h3 a {
    color: #000000;
    text-decoration: none;
}

.rare-cart-product-info p {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #777777;
}


/* Price */

.rare-cart-price,
.rare-cart-total {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: #000000;
}

.rare-cart-total {
    font-weight: 600;
}


/* Quantity */

.rare-cart-quantity {
    display: flex;
    width: 100px;
    height: 38px;
    border: 1px solid #dddddd;
}

.rare-cart-quantity button {
    width: 30px;
    border: 0;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    cursor: pointer;
}

.rare-cart-quantity input {
    width: 40px;
    border: 0;
    outline: 0;
    text-align: center;
    background: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 13px;
}


/* Remove */

.rare-cart-remove {
    width: 25px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rare-cart-remove:hover {
    color: #000000;
}


/* =========================================
   CART BOTTOM
========================================= */

.rare-cart-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}

.rare-continue-shopping,
.rare-update-cart {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: #000000;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.rare-continue-shopping i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.rare-continue-shopping:hover i {
    transform: translateX(-4px);
}

.rare-update-cart {
    border-bottom: 1px solid #000000;
    padding-bottom: 3px;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.rare-cart-summary {
    padding: 30px;
    background: #f7f7f7;
}

.rare-cart-summary h2 {
    margin: 0 0 28px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.rare-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    color: #555555;
}

.rare-summary-row strong {
    font-weight: 500;
    color: #000000;
}

.rare-summary-divider {
    height: 1px;
    background: #dddddd;
    margin: 22px 0;
}

.rare-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-family: "Lato", sans-serif;
    color: #000000;
}

.rare-summary-total span {
    font-size: 15px;
}

.rare-summary-total strong {
    font-size: 20px;
    font-weight: 500;
}


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

.rare-coupon {
    margin-bottom: 25px;
}

.rare-coupon label {
    display: block;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #555555;
}

.rare-coupon-box {
    display: flex;
    height: 45px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.rare-coupon-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 12px;
    background: transparent;
    font-family: "Lato", sans-serif;
    font-size: 12px;
}

.rare-coupon-box button {
    padding: 0 17px;
    border: 0;
    background: #000000;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    cursor: pointer;
}



.rare-checkout-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #000000;
    color: #ffffff;

    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 15px;

    transition: all 0.3s ease;
}

.rare-checkout-btn:hover {
    background: #222222;
    color: #ffffff;
}

.rare-checkout-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.rare-checkout-btn:hover i {
    transform: translateX(5px);
}

.rare-secure-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    color: #888888;
}

.rare-secure-payment i {
    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .rare-cart-item {
        grid-template-columns: minmax(220px, 1fr) 70px 100px 70px 20px;
        gap: 12px;
    }

    .rare-cart-image {
        flex-basis: 85px;
        width: 85px;
        height: 100px;
    }
}



@media (max-width: 767px) {

    .rare-cart-section {
        padding: 50px 0 50px;
    }

    .rare-cart-heading {
        margin-bottom: 35px;
    }

    .rare-cart-heading h1 {
        font-size: 25px;
    }

    .rare-cart-item {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 20px 0;
    }

    .rare-cart-product {
        grid-column: 1 / -1;
    }

    .rare-cart-image {
        width: 85px;
        height: 100px;
        flex-basis: 85px;
    }

    .rare-cart-price {
        display: none;
    }

    .rare-cart-quantity {
        grid-column: 1;
    }

    .rare-cart-total {
        grid-column: 2;
        align-self: center;
        text-align: right;
    }

    .rare-cart-remove {
        position: absolute;
        top: 20px;
        right: 0;
    }

    .rare-cart-bottom {
        gap: 20px;
    }

    .rare-cart-summary {
        padding: 25px 20px;
    }

    .rare-cart-summary h2 {
        font-size: 19px;
    }
}



@media (max-width: 400px) {

    .rare-cart-product {
        gap: 12px;
    }

    .rare-cart-image {
        width: 75px;
        height: 90px;
        flex-basis: 75px;
    }

    .rare-cart-product-info h3 {
        font-size: 14px;
    }

    .rare-cart-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* cart page end */





/* buy page start */


.rare-checkout-section {
    background: #ffffff;
    padding: 50px 0 50px;
    font-family: "Lato", sans-serif;
}


.rare-checkout-heading {
    text-align: center;
    margin-bottom: 55px;
}

.rare-checkout-heading span {
    display: block;
    margin-bottom: 10px;
    color: #777777;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
}

.rare-checkout-heading h1 {
    margin: 0;
    color: #000000;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
}



.checkout-block {
    margin-bottom: 45px;
}

.checkout-block-heading {
    margin-bottom: 25px;
}

.checkout-block-heading h2 {
    margin: 0 0 7px;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
}

.checkout-block-heading p {
    margin: 0;
    color: #777777;
    font-size: 12px;
}



.checkout-input {
    position: relative;
}

.checkout-input label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.checkout-input input,
.checkout-input select,
.checkout-input textarea {
    width: 100%;
    border: 1px solid #dddddd;
    outline: none;
    border-radius: 0;
    background: #ffffff;
    color: #000000;
    padding: 13px 14px;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.checkout-input input,
.checkout-input select {
    height: 48px;
}

.checkout-input textarea {
    resize: vertical;
}

.checkout-input input:focus,
.checkout-input select:focus,
.checkout-input textarea:focus {
    border-color: #000000;
}

.checkout-input input::placeholder,
.checkout-input textarea::placeholder {
    color: #aaaaaa;
}



.checkout-checkbox,
.checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.checkout-checkbox input,
.checkout-terms input {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    accent-color: #000000;
}

.checkout-checkbox label,
.checkout-terms label {
    color: #555555;
    font-size: 12px;
    line-height: 1.5;
}

.checkout-terms {
    margin-bottom: 25px;
}

.checkout-terms a {
    color: #000000;
    text-decoration: underline;
}


.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: block;
    border: 1px solid #dddddd;
    padding: 17px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.delivery-option:hover,
.delivery-option.active {
    border-color: #000000;
}

.delivery-option > input {
    display: none;
}

.delivery-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.delivery-option-content div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.delivery-option-content strong {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.delivery-option-content span {
    color: #777777;
    font-size: 11px;
}

.delivery-option-content b {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}



.payment-methods {
    display: flex;
    flex-direction: column;
}

.payment-method {
    display: block;
    margin: 0;
    border: 1px solid #dddddd;
    border-bottom: 0;
    padding: 18px;
    cursor: pointer;
}

.payment-method:last-child {
    border-bottom: 1px solid #dddddd;
}

.payment-method:hover,
.payment-method.active {
    border-color: #000000;
}

.payment-method > input {
    display: none;
}

.payment-method-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-method-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-method-title > i {
    width: 22px;
    color: #000000;
    font-size: 16px;
    text-align: center;
}

.payment-method-title div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-method-title strong {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.payment-method-title span {
    color: #777777;
    font-size: 11px;
}


.payment-radio {
    position: relative;
    width: 17px;
    height: 17px;
    border: 1px solid #bbbbbb;
    border-radius: 50%;
}

.payment-method.active .payment-radio {
    border-color: #000000;
}

.payment-method.active .payment-radio::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    background: #000000;
}


.card-payment-details {
    display: none;
    padding: 20px;
    border: 1px solid #dddddd;
    border-top: 0;
}

.payment-method.card-selected + .card-payment-details {
    display: block;
}



.rare-place-order-btn {
    width: 100%;
    height: 55px;
    border: 1px solid #000000;
    border-radius: 0;
    background: #000000;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-family: "Lato", sans-serif;
    font-size: 15px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-place-order-btn:hover {
    background: #ffffff;
    color: #000000;
}

.rare-place-order-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.rare-place-order-btn:hover i {
    transform: translateX(5px);
}



.rare-checkout-summary {
    position: sticky;
    top: 100px;
    padding: 30px;
    background: #f7f7f7;
}

.rare-checkout-summary h2 {
    margin: 0 0 25px;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
}



.checkout-product {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
}

.checkout-product-image {
    position: relative;
    flex: 0 0 65px;
    width: 65px;
    height: 75px;
    background: #ffffff;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product-image span {
    position: absolute;
    top: -7px;
    right: -7px;

    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #000000;
    color: #ffffff;

    font-size: 9px;
}

.checkout-product-info {
    flex: 1;
}

.checkout-product-info h3 {
    margin: 0 0 5px;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.checkout-product-info span {
    color: #777777;
    font-size: 11px;
}

.checkout-product > strong {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}


.checkout-coupon {
    display: flex;
    height: 45px;
    margin: 25px 0;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.checkout-coupon input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 13px;
    background: transparent;
    font-family: "Lato", sans-serif;
    font-size: 12px;
}

.checkout-coupon button {
    width: 75px;
    border: 0;
    background: #000000;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    cursor: pointer;
}



.checkout-summary-details {
    padding: 5px 0;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #555555;
    font-size: 12px;
}

.checkout-summary-row strong {
    color: #000000;
    font-weight: 500;
}

.discount-row strong {
    color: #777777;
}

.checkout-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;

    color: #000000;
}

.checkout-total span {
    font-size: 15px;
}

.checkout-total strong {
    font-size: 20px;
    font-weight: 500;
}

.checkout-total small {
    margin-right: 4px;
    color: #777777;
    font-size: 9px;
    font-weight: 400;
}


/* =========================================
   SECURITY
========================================= */

.checkout-security {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding: 15px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.checkout-security > div {
    color: #000000;
}

.checkout-security p {
    margin: 0;
    color: #777777;
    font-size: 10px;
    line-height: 1.6;
}


/* Trust */

.checkout-trust {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.checkout-trust div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #777777;
    font-size: 10px;
}

.checkout-trust i {
    color: #000000;
}


@media (max-width: 991px) {

    .rare-checkout-section {
        padding: 65px 0 80px;
    }

    .rare-checkout-summary {
        position: static;
    }
}



@media (max-width: 575px) {

    .rare-checkout-section {
        padding: 50px 0 50px;
    }

    .rare-checkout-heading {
        margin-bottom: 35px;
    }

    .rare-checkout-heading h1 {
        font-size: 25px;
    }

    .checkout-block {
        margin-bottom: 35px;
    }

    .checkout-block-heading h2 {
        font-size: 18px;
    }

    .rare-checkout-summary {
        padding: 23px 18px;
    }

    .checkout-product-image {
        flex-basis: 58px;
        width: 58px;
        height: 68px;
    }

    .checkout-product-info h3 {
        font-size: 12px;
    }

    .checkout-trust {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* buy page end */



/* login page */

.rare-login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 0;

    background: #ffffff;
    font-family: "Lato", sans-serif;
}


.rare-login-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.rare-login-content {
    width: 100%;
    padding: 45px 45px 40px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
}



.rare-login-heading {
    text-align: center;
    margin-bottom: 35px;
}

.rare-login-heading span {
    display: block;
    margin-bottom: 10px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;

    color: #777777;
}

.rare-login-heading h1 {
    margin: 0 0 12px;

    font-family: "Lato", sans-serif;
    color: #000000;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
}

.rare-login-heading p {
    max-width: 300px;
    margin: 0 auto;

    color: #777777;
    font-size: 12px;
    line-height: 1.6;
}



.rare-login-input {
    margin-bottom: 22px;
}

.rare-login-input > label {
    display: block;
    margin-bottom: 8px;

    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.rare-login-input input {
    width: 100%;
    height: 50px;

    padding: 0 14px;

    border: 1px solid #dddddd;
    border-radius: 0;

    outline: none;
    background: #ffffff;

    color: #000000;

    font-family: "Lato", sans-serif;
    font-size: 13px;

    transition: border-color 0.3s ease;
}

.rare-login-input input:focus {
    border-color: #000000;
}

.rare-login-input input::placeholder {
    color: #aaaaaa;
}



.password-label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}

.password-label label {
    margin: 0;

    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.password-label a {
    color: #555555;
    font-size: 11px;
    text-decoration: none;

    transition: color 0.3s ease;
}

.password-label a:hover {
    color: #000000;
    text-decoration: underline;
}


.password-field {
    position: relative;
}

.password-field input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    padding: 0;
    border: 0;

    background: transparent;

    color: #777777;

    font-size: 14px;
    cursor: pointer;
}

.password-toggle:hover {
    color: #000000;
}


.rare-login-options {
    margin: 2px 0 25px;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #555555;
    font-size: 12px;

    cursor: pointer;
}

.remember-me input {
    width: 14px;
    height: 14px;

    margin: 0;

    accent-color: #000000;
}


.rare-login-btn {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 1px solid #000000;
    border-radius: 0;

    background: #000000;
    color: #ffffff;

    font-family: "Lato", sans-serif;
    font-size: 15px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-login-btn:hover {
    background: #ffffff;
    color: #000000;
}

.rare-login-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.rare-login-btn:hover i {
    transform: translateX(5px);
}


.rare-login-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    margin-top: 25px;

    color: #777777;
    font-size: 12px;
}

.rare-login-register a {
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
}


.rare-login-divider {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 25px 0;
}

.rare-login-divider::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;

    height: 1px;

    background: #eeeeee;
}

.rare-login-divider span {
    position: relative;

    padding: 0 12px;

    background: #ffffff;

    color: #999999;

    font-size: 9px;
    letter-spacing: 1px;
}


.rare-guest-btn {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid #dddddd;
    border-radius: 0;

    background: #ffffff;
    color: #000000;

    font-size: 12px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-guest-btn:hover {
    border-color: #000000;
    color: #000000;
}

.rare-guest-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.rare-guest-btn:hover i {
    transform: translateX(5px);
}



@media (max-width: 575px) {

    .rare-login-section {
        min-height: auto;
        padding: 50px 15px 50px;
    }

    .rare-login-content {
        padding: 35px 22px 30px;
    }

    .rare-login-heading {
        margin-bottom: 30px;
    }

    .rare-login-heading h1 {
        font-size: 25px;
    }

    .rare-login-register {
        flex-wrap: wrap;
        text-align: center;
    }

    .password-label {
        gap: 10px;
    }

}

/* login end */


/* register page start */


.rare-register-section {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 0;

    background: #ffffff;

    font-family: "Lato", sans-serif;
}



.rare-register-wrapper {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.rare-register-content {
    width: 100%;

    padding: 45px 45px 40px;

    border: 1px solid #e5e5e5;

    background: #ffffff;
}



.rare-register-heading {
    text-align: center;
    margin-bottom: 35px;
}

.rare-register-heading span {
    display: block;

    margin-bottom: 10px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-register-heading h1 {
    margin: 0 0 12px;

    color: #000000;
    font-family: "Lato", sans-serif;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;
}

.rare-register-heading p {
    max-width: 390px;

    margin: 0 auto;

    color: #777777;

    font-size: 12px;
    line-height: 1.6;
}



.rare-register-input {
    margin-bottom: 5px;
}

.rare-register-input label {
    display: block;

    margin-bottom: 8px;

    color: #000000;

    font-size: 12px;
    font-weight: 500;
}

.rare-register-input input {
    width: 100%;
    height: 50px;

    padding: 0 14px;

    border: 1px solid #dddddd;
    border-radius: 0;

    outline: none;

    background: #ffffff;
    color: #000000;

    font-family: "Lato", sans-serif;

    font-size: 13px;

    transition: border-color 0.3s ease;
}

.rare-register-input input:focus {
    border-color: #000000;
}

.rare-register-input input::placeholder {
    color: #aaaaaa;
}


.register-password-field {
    position: relative;
}

.register-password-field input {
    padding-right: 45px;
}

.register-password-toggle {
    position: absolute;

    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    padding: 0;

    border: 0;

    background: transparent;

    color: #777777;

    font-size: 14px;

    cursor: pointer;
}

.register-password-toggle:hover {
    color: #000000;
}



.rare-register-terms {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-top: 25px;
    margin-bottom: 25px;
}

.rare-register-terms input {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    margin-top: 1px;

    accent-color: #000000;
}

.rare-register-terms label {
    color: #555555;

    font-size: 11px;
    line-height: 1.6;
}

.rare-register-terms a {
    color: #000000;

    text-decoration: underline;
}



.rare-register-btn {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #000000;
    border-radius: 0;

    background: #000000;
    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 15px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-register-btn:hover {
    background: #ffffff;
    color: #000000;
}

.rare-register-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.rare-register-btn:hover i {
    transform: translateX(5px);
}


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

.rare-register-login {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 5px;

    margin-top: 25px;

    color: #777777;

    font-size: 12px;
}

.rare-register-login a {
    color: #000000;

    font-weight: 500;

    text-decoration: underline;
}



@media (max-width: 575px) {

    .rare-register-section {
        min-height: auto;

        padding: 50px 15px 50px;
    }

    .rare-register-content {
        padding: 35px 22px 30px;
    }

    .rare-register-heading {
        margin-bottom: 30px;
    }

    .rare-register-heading h1 {
        font-size: 25px;
    }

    .rare-register-login {
        flex-wrap: wrap;

        text-align: center;
    }

}

/* register page end */


/* conact page start */


.rare-contact-section {
    background: #ffffff;
    padding: 50px 0 50px;
    font-family: "Lato", sans-serif;
}


.rare-contact-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.rare-contact-heading span {
    display: block;
    margin-bottom: 10px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-contact-heading h1 {
    margin: 0 0 13px;

    color: #000000;
    font-family: "Lato", sans-serif;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;
}

.rare-contact-heading p {
    max-width: 500px;
    margin: 0 auto;

    color: #777777;

    font-size: 13px;
    line-height: 1.7;
}


.rare-contact-info {
    padding-right: 35px;
}

.rare-contact-info-heading {
    margin-bottom: 30px;
}

.rare-contact-info-heading span {
    display: block;
    margin-bottom: 10px;

    color: #777777;

    font-size: 10px;
    letter-spacing: 2px;
}

.rare-contact-info-heading h2 {
    margin: 0 0 14px;

    color: #000000;

    font-size: 25px;
    line-height: 1.3;

    font-weight: 400;
}

.rare-contact-info-heading p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.8;
}



.rare-contact-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 19px 0;

    border-bottom: 1px solid #eeeeee;

    color: #000000;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-contact-item:hover {
    color: #000000;
    padding-left: 5px;
}

.rare-contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;

    color: #000000;

    font-size: 14px;

    transition: all 0.3s ease;
}

.rare-contact-item:hover .rare-contact-icon {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.rare-contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding-right: 30px;
}

.rare-contact-item-content span {
    color: #888888;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.rare-contact-item-content strong {
    color: #000000;

    font-size: 13px;
    font-weight: 500;
}

.rare-contact-arrow {
    position: absolute;

    right: 0;

    color: #777777;

    font-size: 10px;

    transition: transform 0.3s ease;
}

.rare-contact-item:hover .rare-contact-arrow {
    transform: translateX(5px);
    color: #000000;
}


/* =========================================
   BUSINESS HOURS
========================================= */

.rare-contact-hours {
    margin-top: 30px;

    padding: 22px;

    background: #f7f7f7;
}

.rare-contact-hours-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #000000;

    font-size: 13px;
    font-weight: 500;
}

.rare-hours-row {
    display: flex;
    justify-content: space-between;

    padding: 9px 0;

    border-top: 1px solid #e3e3e3;

    color: #666666;

    font-size: 11px;
}

.rare-hours-row strong {
    color: #000000;

    font-weight: 500;
}


/* =========================================
   FORM BOX
========================================= */

.rare-contact-form-box {
    padding: 40px;

    border: 1px solid #e5e5e5;

    background: #ffffff;
}

.rare-contact-form-heading {
    margin-bottom: 30px;
}

.rare-contact-form-heading h2 {
    margin: 0 0 8px;

    color: #000000;

    font-size: 23px;
    font-weight: 400;
}

.rare-contact-form-heading p {
    margin: 0;

    color: #777777;

    font-size: 12px;
}


/* =========================================
   FORM INPUTS
========================================= */

.rare-contact-input label {
    display: block;

    margin-bottom: 8px;

    color: #000000;

    font-size: 12px;
    font-weight: 500;
}

.rare-contact-input input,
.rare-contact-input select,
.rare-contact-input textarea {
    width: 100%;

    border: 1px solid #dddddd;
    border-radius: 0;

    outline: none;

    background: #ffffff;

    color: #000000;

    padding: 13px 14px;

    font-family: "Lato", sans-serif;
    font-size: 13px;

    transition: border-color 0.3s ease;
}

.rare-contact-input input,
.rare-contact-input select {
    height: 49px;
}

.rare-contact-input textarea {
    resize: vertical;
    min-height: 135px;
}

.rare-contact-input input:focus,
.rare-contact-input select:focus,
.rare-contact-input textarea:focus {
    border-color: #000000;
}

.rare-contact-input input::placeholder,
.rare-contact-input textarea::placeholder {
    color: #aaaaaa;
}



.rare-contact-submit {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #000000;
    border-radius: 0;

    background: #000000;
    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 15px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-contact-submit:hover {
    background: #ffffff;
    color: #000000;
}

.rare-contact-submit i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.rare-contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================
   MAP
========================================= */

.rare-contact-map {
    width: 100%;
    height: 380px;

    margin-top: 70px;

    overflow: hidden;

    border: 1px solid #eeeeee;
}

.rare-contact-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    filter: grayscale(100%);
}


@media (max-width: 991px) {

    .rare-contact-section {
        padding: 50px 0 50px;
    }

    .rare-contact-info {
        padding-right: 0;
    }

    .rare-contact-form-box {
        padding: 30px;
    }

    .rare-contact-map {
        margin-top: 50px;
        height: 320px;
    }
}



@media (max-width: 575px) {

    .rare-contact-section {
        padding: 50px 0 50px;
    }

    .rare-contact-heading {
        margin-bottom: 40px;
    }

    .rare-contact-heading h1 {
        font-size: 25px;
    }

    .rare-contact-heading p {
        font-size: 12px;
    }

    .rare-contact-info-heading h2 {
        font-size: 22px;
    }

    .rare-contact-form-box {
        padding: 25px 20px;
    }

    .rare-contact-form-heading h2 {
        font-size: 21px;
    }

    .rare-contact-hours {
        padding: 18px;
    }

    .rare-hours-row {
        flex-direction: column;
        gap: 5px;
    }

    .rare-contact-map {
        height: 260px;
        margin-top: 40px;
    }
}


/* contact page end */


/* about start */

.rare-about-section {
    padding: 50px 0;
    background: #ffffff;
    font-family: "Lato", sans-serif;
}



.rare-about-image {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #f5f5f5;
}

.rare-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.rare-about-image:hover img {
    transform: scale(1.04);
}


/* Image Overlay Text */

.rare-about-image-text {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    color: #ffffff;
}

.rare-about-image-text span {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 500;
}

.rare-about-image-text strong {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
}



.rare-about-content {
    padding-left: 35px;
}

.rare-about-label {
    display: block;
    margin-bottom: 14px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}


/* Heading */

.rare-about-content h2 {
    max-width: 500px;

    margin: 0 0 25px;

    color: #000000;

    font-size: 35px;
    line-height: 1.5;

    font-weight: 400;
}

.rare-about-content h2 em {
    display: block;

    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400;
}


/* Paragraph */

.rare-about-content p {
    max-width: 540px;

    margin: 0 0 16px;

    color: #666666;

    font-size: 14px;
    line-height: 1.85;
}

.rare-about-content .rare-about-intro {
    color: #222222;

    font-size: 15px;
    line-height: 1.8;
}



.rare-about-stats {
    display: flex;
    align-items: center;

    margin-top: 35px;
    margin-bottom: 35px;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.rare-about-stat {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 20px 15px 20px 0;

    border-right: 1px solid #eeeeee;
}

.rare-about-stat:not(:first-child) {
    padding-left: 20px;
}

.rare-about-stat:last-child {
    border-right: 0;
}

.rare-about-stat strong {
    color: #000000;

    font-size: 24px;
    line-height: 1;

    font-weight: 400;
}

.rare-about-stat span {
    color: #777777;

    font-size: 9px;
    line-height: 1.5;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.rare-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    height: 50px;

    padding: 0 25px;

    border: 1px solid #000000;
    border-radius: 0;

    background: #000000;
    color: #ffffff;

    font-size: 15px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-about-btn:hover {
    background: #ffffff;
    color: #000000;
}

.rare-about-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.rare-about-btn:hover i {
    transform: translateX(5px);
}



@media (max-width: 991px) {

    .rare-about-section {
        padding: 50px 0;
    }

    .rare-about-image {
        height: 500px;
    }

    .rare-about-content {
        padding-left: 0;
    }

    .rare-about-content h2 {
        font-size: 36px;
    }

}



@media (max-width: 575px) {

    .rare-about-section {
        padding: 50px 0;
    }

    .rare-about-image {
        height: 420px;
    }

    .rare-about-image-text {
        left: 20px;
        bottom: 20px;
    }

    .rare-about-content h2 {
        font-size: 30px;
        line-height: 45px;
    }

    .rare-about-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .rare-about-content .rare-about-intro {
        font-size: 13px;
    }

    .rare-about-stats {
        align-items: stretch;
    }

    .rare-about-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;

        padding: 18px 8px;
    }

    .rare-about-stat:not(:first-child) {
        padding-left: 12px;
    }

    .rare-about-stat strong {
        font-size: 20px;
    }

    .rare-about-stat span {
        font-size: 8px;
    }

    .rare-about-btn {
        width: 100%;
    }

}

/* about end */



/* privacy page */

/* =========================================
   RAREPERFO PRIVACY POLICY
========================================= */

.rare-policy-section {
    padding: 90px 0 110px;
    background: #ffffff;
    font-family: "Lato", sans-serif;
}


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

.rare-policy-heading {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.rare-policy-heading > span {
    display: block;
    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-policy-heading h1 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;
}

.rare-policy-heading p {
    max-width: 520px;
    margin: 0 auto 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-policy-heading small {
    color: #999999;
    font-size: 10px;
}


/* =========================================
   SIDEBAR
========================================= */

.rare-policy-sidebar {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid #dddddd;
}

.rare-policy-sidebar > span {
    padding: 0 0 15px 20px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-policy-sidebar a {
    position: relative;

    padding: 10px 15px 10px 20px;

    color: #777777;

    font-size: 11px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-policy-sidebar a::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;
    bottom: 0;

    width: 1px;

    background: transparent;

    transition: background 0.3s ease;
}

.rare-policy-sidebar a:hover,
.rare-policy-sidebar a.active {
    color: #000000;
}

.rare-policy-sidebar a:hover::before,
.rare-policy-sidebar a.active::before {
    background: #000000;
}


/* =========================================
   POLICY CONTENT
========================================= */

.rare-policy-content {
    max-width: 820px;
}

.rare-policy-block {
    scroll-margin-top: 100px;

    padding-bottom: 45px;
    margin-bottom: 45px;

    border-bottom: 1px solid #eeeeee;
}

.rare-policy-block:last-of-type {
    margin-bottom: 0;
}

.rare-policy-block > span {
    display: block;
    margin-bottom: 10px;

    color: #999999;

    font-size: 10px;
    letter-spacing: 1px;
}

.rare-policy-block h2 {
    margin: 0 0 18px;

    color: #000000;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 400;
}

.rare-policy-block h3 {
    margin: 25px 0 10px;

    color: #000000;

    font-size: 14px;
    font-weight: 500;
}

.rare-policy-block p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.9;
}

.rare-policy-block p:last-child {
    margin-bottom: 0;
}


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

.rare-policy-block ul {
    margin: 15px 0 20px;
    padding-left: 18px;
}

.rare-policy-block li {
    margin-bottom: 10px;

    padding-left: 5px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-policy-block li::marker {
    color: #000000;
}


/* =========================================
   CONTACT
========================================= */

.rare-policy-contact {
    display: flex;
    gap: 50px;

    margin-top: 25px;
    padding: 22px;

    background: #f7f7f7;
}

.rare-policy-contact div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rare-policy-contact span {
    color: #999999;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.rare-policy-contact a {
    color: #000000;

    font-size: 12px;

    text-decoration: none;
}

.rare-policy-contact a:hover {
    text-decoration: underline;
}


/* =========================================
   SECURITY NOTE
========================================= */

.rare-policy-note {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;
    padding: 20px;

    border: 1px solid #eeeeee;

    background: #fafafa;
}

.rare-policy-note > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-policy-note p {
    margin: 0;

    color: #777777;

    font-size: 11px;
    line-height: 1.7;
}



@media (max-width: 991px) {

    .rare-policy-section {
        padding: 50px 0 50px;
    }

    .rare-policy-heading {
        margin-bottom: 50px;
    }

    .rare-policy-sidebar {
        position: static;

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

        border-left: 0;
        border-bottom: 1px solid #dddddd;

        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .rare-policy-sidebar > span {
        grid-column: 1 / -1;

        padding-left: 0;
    }

    .rare-policy-sidebar a {
        padding-left: 12px;
    }

}



@media (max-width: 575px) {

    .rare-policy-section {
        padding: 50px 0 50px;
    }

    .rare-policy-heading {
        margin-bottom: 40px;
    }

    .rare-policy-heading h1 {
        font-size: 25px;
    }

    .rare-policy-heading p {
        font-size: 12px;
    }

    .rare-policy-sidebar {
        grid-template-columns: 1fr;

        margin-bottom: 35px;
    }

    .rare-policy-sidebar > span {
        margin-bottom: 5px;
    }

    .rare-policy-block {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .rare-policy-block h2 {
        font-size: 21px;
    }

    .rare-policy-block p,
    .rare-policy-block li {
        font-size: 12px;
    }

    .rare-policy-contact {
        flex-direction: column;
        gap: 20px;
    }

}

/* privacy end */


/* terms page */

/* =========================================
   RAREPERFO TERMS & CONDITIONS
========================================= */

.rare-terms-section {
    padding: 90px 0 110px;
    background: #ffffff;

    font-family: "Lato", sans-serif;
}


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

.rare-terms-heading {
    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;
}

.rare-terms-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-terms-heading h1 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 400;
}

.rare-terms-heading p {
    max-width: 540px;

    margin: 0 auto 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-terms-heading small {
    color: #999999;

    font-size: 10px;
}


/* =========================================
   SIDEBAR
========================================= */

.rare-terms-sidebar {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid #dddddd;
}

.rare-terms-sidebar > span {
    padding: 0 0 15px 20px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-terms-sidebar a {
    position: relative;

    padding: 10px 15px 10px 20px;

    color: #777777;

    font-size: 11px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-terms-sidebar a::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;
    bottom: 0;

    width: 1px;

    background: transparent;

    transition: background 0.3s ease;
}

.rare-terms-sidebar a:hover,
.rare-terms-sidebar a.active {
    color: #000000;
}

.rare-terms-sidebar a:hover::before,
.rare-terms-sidebar a.active::before {
    background: #000000;
}


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

.rare-terms-content {
    max-width: 820px;
}

.rare-terms-block {
    scroll-margin-top: 100px;

    padding-bottom: 45px;
    margin-bottom: 45px;

    border-bottom: 1px solid #eeeeee;
}

.rare-terms-block:last-of-type {
    margin-bottom: 0;
}

.rare-terms-block > span {
    display: block;

    margin-bottom: 10px;

    color: #999999;

    font-size: 10px;

    letter-spacing: 1px;
}

.rare-terms-block h2 {
    margin: 0 0 18px;

    color: #000000;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 400;
}

.rare-terms-block p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.9;
}

.rare-terms-block p:last-child {
    margin-bottom: 0;
}


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

.rare-terms-block ul {
    margin: 15px 0 20px;

    padding-left: 18px;
}

.rare-terms-block li {
    margin-bottom: 10px;

    padding-left: 5px;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}

.rare-terms-block li::marker {
    color: #000000;
}


/* =========================================
   POLICY LINK
========================================= */

.rare-terms-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 5px;

    color: #000000;

    font-size: 11px;
    font-weight: 500;

    text-decoration: underline;
}

.rare-terms-link i {
    font-size: 9px;

    text-decoration: none;

    transition: transform 0.3s ease;
}

.rare-terms-link:hover {
    color: #000000;
}

.rare-terms-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   CONTACT
========================================= */

.rare-terms-contact {
    display: flex;

    gap: 50px;

    margin-top: 25px;

    padding: 22px;

    background: #f7f7f7;
}

.rare-terms-contact div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.rare-terms-contact span {
    color: #999999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.rare-terms-contact a {
    color: #000000;

    font-size: 12px;

    text-decoration: none;
}

.rare-terms-contact a:hover {
    text-decoration: underline;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.rare-terms-note {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;

    padding: 20px;

    border: 1px solid #eeeeee;

    background: #fafafa;
}

.rare-terms-note > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-terms-note p {
    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rare-terms-section {
        padding: 70px 0 85px;
    }

    .rare-terms-heading {
        margin-bottom: 50px;
    }

    .rare-terms-sidebar {
        position: static;

        display: grid;

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

        border-left: 0;
        border-bottom: 1px solid #dddddd;

        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .rare-terms-sidebar > span {
        grid-column: 1 / -1;

        padding-left: 0;
    }

    .rare-terms-sidebar a {
        padding-left: 12px;
    }

}


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

@media (max-width: 575px) {

    .rare-terms-section {
        padding: 55px 0 70px;
    }

    .rare-terms-heading {
        margin-bottom: 40px;
    }

    .rare-terms-heading h1 {
        font-size: 30px;
    }

    .rare-terms-heading p {
        font-size: 12px;
    }

    .rare-terms-sidebar {
        grid-template-columns: 1fr;

        margin-bottom: 35px;
    }

    .rare-terms-sidebar > span {
        margin-bottom: 5px;
    }

    .rare-terms-block {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .rare-terms-block h2 {
        font-size: 21px;
    }

    .rare-terms-block p,
    .rare-terms-block li {
        font-size: 12px;
    }

    .rare-terms-contact {
        flex-direction: column;

        gap: 20px;
    }

}

/* terms end */


/* refund page  */

/* =========================================
   RAREPERFO REFUND & RETURN POLICY
========================================= */

.rare-refund-section {
    padding: 90px 0 110px;

    background: #ffffff;

    font-family: "Lato", sans-serif;
}


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

.rare-refund-heading {
    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;
}

.rare-refund-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-refund-heading h1 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 400;
}

.rare-refund-heading p {
    max-width: 540px;

    margin: 0 auto 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-refund-heading small {
    color: #999999;

    font-size: 10px;
}


/* =========================================
   SIDEBAR
========================================= */

.rare-refund-sidebar {
    position: sticky;

    top: 100px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid #dddddd;
}

.rare-refund-sidebar > span {
    padding: 0 0 15px 20px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-refund-sidebar a {
    position: relative;

    padding: 10px 15px 10px 20px;

    color: #777777;

    font-size: 11px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-refund-sidebar a::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;
    bottom: 0;

    width: 1px;

    background: transparent;

    transition: background 0.3s ease;
}

.rare-refund-sidebar a:hover,
.rare-refund-sidebar a.active {
    color: #000000;
}

.rare-refund-sidebar a:hover::before,
.rare-refund-sidebar a.active::before {
    background: #000000;
}


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

.rare-refund-content {
    max-width: 820px;
}

.rare-refund-block {
    scroll-margin-top: 100px;

    padding-bottom: 45px;

    margin-bottom: 45px;

    border-bottom: 1px solid #eeeeee;
}

.rare-refund-block:last-of-type {
    margin-bottom: 0;
}

.rare-refund-block > span {
    display: block;

    margin-bottom: 10px;

    color: #999999;

    font-size: 10px;

    letter-spacing: 1px;
}

.rare-refund-block h2 {
    margin: 0 0 18px;

    color: #000000;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 400;
}

.rare-refund-block h3 {
    margin: 0 0 8px;

    color: #000000;

    font-size: 14px;

    font-weight: 500;
}

.rare-refund-block p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 13px;

    line-height: 1.9;
}

.rare-refund-block p:last-child {
    margin-bottom: 0;
}


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

.rare-refund-block ul {
    margin: 15px 0 20px;

    padding-left: 18px;
}

.rare-refund-block li {
    margin-bottom: 10px;

    padding-left: 5px;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}

.rare-refund-block li::marker {
    color: #000000;
}


/* =========================================
   HIGHLIGHT BOX
========================================= */

.rare-refund-highlight {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 25px;

    padding: 20px;

    border: 1px solid #eeeeee;

    background: #f8f8f8;
}

.rare-refund-highlight > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-refund-highlight strong {
    display: block;

    margin-bottom: 5px;

    color: #000000;

    font-size: 12px;

    font-weight: 500;
}

.rare-refund-highlight p {
    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   RETURN STEPS
========================================= */

.rare-refund-steps {
    margin-top: 25px;
}

.rare-refund-step {
    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid #eeeeee;
}

.rare-refund-step:last-child {
    border-bottom: 1px solid #eeeeee;
}

.rare-refund-step > strong {
    flex-shrink: 0;

    color: #999999;

    font-size: 12px;

    font-weight: 400;
}

.rare-refund-step h3 {
    margin-bottom: 7px;
}

.rare-refund-step p {
    margin: 0;
}


/* =========================================
   CONTACT
========================================= */

.rare-refund-contact {
    display: flex;

    gap: 50px;

    margin-top: 25px;

    padding: 22px;

    background: #f7f7f7;
}

.rare-refund-contact div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.rare-refund-contact span {
    color: #999999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.rare-refund-contact a {
    color: #000000;

    font-size: 12px;

    text-decoration: none;
}

.rare-refund-contact a:hover {
    text-decoration: underline;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.rare-refund-note {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;

    padding: 20px;

    border: 1px solid #eeeeee;

    background: #fafafa;
}

.rare-refund-note > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-refund-note p {
    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rare-refund-section {
        padding: 70px 0 85px;
    }

    .rare-refund-heading {
        margin-bottom: 50px;
    }

    .rare-refund-sidebar {
        position: static;

        display: grid;

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

        border-left: 0;

        border-bottom: 1px solid #dddddd;

        padding-bottom: 15px;

        margin-bottom: 15px;
    }

    .rare-refund-sidebar > span {
        grid-column: 1 / -1;

        padding-left: 0;
    }

    .rare-refund-sidebar a {
        padding-left: 12px;
    }

}


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

@media (max-width: 575px) {

    .rare-refund-section {
        padding: 55px 0 70px;
    }

    .rare-refund-heading {
        margin-bottom: 40px;
    }

    .rare-refund-heading h1 {
        font-size: 29px;
    }

    .rare-refund-heading p {
        font-size: 12px;
    }

    .rare-refund-sidebar {
        grid-template-columns: 1fr;

        margin-bottom: 35px;
    }

    .rare-refund-sidebar > span {
        margin-bottom: 5px;
    }

    .rare-refund-block {
        padding-bottom: 35px;

        margin-bottom: 35px;
    }

    .rare-refund-block h2 {
        font-size: 21px;
    }

    .rare-refund-block p,
    .rare-refund-block li {
        font-size: 12px;
    }

    .rare-refund-highlight {
        padding: 16px;
    }

    .rare-refund-step {
        gap: 14px;
    }

    .rare-refund-contact {
        flex-direction: column;

        gap: 20px;
    }

}

/* refund end */



/* shippin page */

/* =========================================
   RAREPERFO SHIPPING POLICY
========================================= */

.rare-shipping-section {
    padding: 90px 0 110px;
    background: #ffffff;
    font-family: "Lato", sans-serif;
}


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

.rare-shipping-heading {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.rare-shipping-heading > span {
    display: block;
    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}

.rare-shipping-heading h1 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 400;
}

.rare-shipping-heading p {
    max-width: 560px;
    margin: 0 auto 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-shipping-heading small {
    color: #999999;
    font-size: 10px;
}


/* =========================================
   SIDEBAR
========================================= */

.rare-shipping-sidebar {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid #dddddd;
}

.rare-shipping-sidebar > span {
    padding: 0 0 15px 20px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
}

.rare-shipping-sidebar a {
    position: relative;

    padding: 10px 15px 10px 20px;

    color: #777777;

    font-size: 11px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-shipping-sidebar a::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;
    bottom: 0;

    width: 1px;

    background: transparent;

    transition: background 0.3s ease;
}

.rare-shipping-sidebar a:hover,
.rare-shipping-sidebar a.active {
    color: #000000;
}

.rare-shipping-sidebar a:hover::before,
.rare-shipping-sidebar a.active::before {
    background: #000000;
}


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

.rare-shipping-content {
    max-width: 820px;
}

.rare-shipping-block {
    scroll-margin-top: 100px;

    padding-bottom: 45px;
    margin-bottom: 45px;

    border-bottom: 1px solid #eeeeee;
}

.rare-shipping-block:last-of-type {
    margin-bottom: 0;
}

.rare-shipping-block > span {
    display: block;
    margin-bottom: 10px;

    color: #999999;

    font-size: 10px;
    letter-spacing: 1px;
}

.rare-shipping-block h2 {
    margin: 0 0 18px;

    color: #000000;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 400;
}

.rare-shipping-block p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 13px;
    line-height: 1.9;
}

.rare-shipping-block p:last-child {
    margin-bottom: 0;
}


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

.rare-shipping-block ul {
    margin: 15px 0 20px;
    padding-left: 18px;
}

.rare-shipping-block li {
    margin-bottom: 10px;
    padding-left: 5px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.rare-shipping-block li::marker {
    color: #000000;
}


/* =========================================
   SHIPPING INFO GRID
========================================= */

.rare-shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    margin: 30px 0;

    background: #e5e5e5;
}

.rare-shipping-info {
    display: flex;
    flex-direction: column;

    min-height: 145px;

    padding: 22px;

    background: #f8f8f8;
}

.rare-shipping-info i {
    margin-bottom: 18px;

    color: #000000;

    font-size: 16px;
}

.rare-shipping-info strong {
    margin-bottom: 7px;

    color: #000000;

    font-size: 12px;
    font-weight: 500;
}

.rare-shipping-info span {
    color: #777777;

    font-size: 10px;
    line-height: 1.6;
}

.rare-shipping-small-note {
    color: #999999 !important;
    font-size: 11px !important;
}


/* =========================================
   HIGHLIGHT BOX
========================================= */

.rare-shipping-highlight {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 25px;
    padding: 20px;

    border: 1px solid #eeeeee;

    background: #f8f8f8;
}

.rare-shipping-highlight > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-shipping-highlight strong {
    display: block;

    margin-bottom: 5px;

    color: #000000;

    font-size: 12px;
    font-weight: 500;
}

.rare-shipping-highlight p {
    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   CONTACT
========================================= */

.rare-shipping-contact {
    display: flex;

    gap: 50px;

    margin-top: 25px;
    padding: 22px;

    background: #f7f7f7;
}

.rare-shipping-contact div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.rare-shipping-contact span {
    color: #999999;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.rare-shipping-contact a {
    color: #000000;

    font-size: 12px;

    text-decoration: none;
}

.rare-shipping-contact a:hover {
    text-decoration: underline;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.rare-shipping-note {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;
    padding: 20px;

    border: 1px solid #eeeeee;

    background: #fafafa;
}

.rare-shipping-note > i {
    padding-top: 2px;

    color: #000000;

    font-size: 15px;
}

.rare-shipping-note p {
    margin: 0;

    color: #777777;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rare-shipping-section {
        padding: 70px 0 85px;
    }

    .rare-shipping-heading {
        margin-bottom: 50px;
    }

    .rare-shipping-sidebar {
        position: static;

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

        border-left: 0;
        border-bottom: 1px solid #dddddd;

        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .rare-shipping-sidebar > span {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    .rare-shipping-sidebar a {
        padding-left: 12px;
    }

}


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

@media (max-width: 575px) {

    .rare-shipping-section {
        padding: 55px 0 70px;
    }

    .rare-shipping-heading {
        margin-bottom: 40px;
    }

    .rare-shipping-heading h1 {
        font-size: 30px;
    }

    .rare-shipping-heading p {
        font-size: 12px;
    }

    .rare-shipping-sidebar {
        grid-template-columns: 1fr;

        margin-bottom: 35px;
    }

    .rare-shipping-sidebar > span {
        margin-bottom: 5px;
    }

    .rare-shipping-block {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .rare-shipping-block h2 {
        font-size: 21px;
    }

    .rare-shipping-block p,
    .rare-shipping-block li {
        font-size: 12px;
    }

    .rare-shipping-info-grid {
        grid-template-columns: 1fr;
    }

    .rare-shipping-info {
        min-height: auto;
    }

    .rare-shipping-highlight {
        padding: 16px;
    }

    .rare-shipping-contact {
        flex-direction: column;
        gap: 20px;
    }

}

/* shiiping end */




/* search box modal start */

/* =========================================
   RAREPERFO SEARCH MODAL
========================================= */

.rare-search-modal .modal-dialog {
    max-width: 700px;
    margin: 30px auto;
}

.rare-search-modal .modal-content {
    position: relative;

    border: 0;
    border-radius: 0;

    background: #ffffff;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15);
}


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

.rare-search-close {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #eeeeee;

    background: #ffffff;
    color: #000000;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-search-close:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}


/* =========================================
   SEARCH BODY
========================================= */

.rare-search-body {
    padding: 65px 60px 55px;
}

.rare-search-label {
    display: block;

    margin-bottom: 12px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;

    text-align: center;
}

.rare-search-body h2 {
    margin: 0 0 30px;

    color: #000000;

    font-family: "Lato", sans-serif;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;

    text-align: center;
}


/* =========================================
   SEARCH FORM
========================================= */

.rare-search-form {
    display: flex;

    width: 100%;

    border-bottom: 1px solid #000000;
}

.rare-search-form input {
    flex: 1;

    width: 100%;
    height: 55px;

    padding: 0 15px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #000000;

    font-family: "Lato", sans-serif;

    font-size: 14px;
}

.rare-search-form input::placeholder {
    color: #999999;
}

.rare-search-form button {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    padding: 0;

    border: 0;

    background: transparent;
    color: #000000;

    font-size: 15px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.rare-search-form button:hover {
    color: #777777;
}


/* =========================================
   POPULAR SEARCHES
========================================= */

.rare-search-categories {
    margin-top: 35px;
}

.rare-search-categories > span {
    display: block;

    margin-bottom: 15px;

    color: #999999;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.rare-search-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.rare-search-tags a {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 0 14px;

    border: 1px solid #e5e5e5;

    border-radius: 0;

    color: #555555;

    background: #ffffff;

    font-size: 10px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-search-tags a:hover {
    border-color: #000000;

    background: #000000;
    color: #ffffff;
}


/* =========================================
   MODAL BACKDROP
========================================= */

.rare-search-modal.show {
    background: rgba(0, 0, 0, 0.35);
}


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

@media (max-width: 575px) {

    .rare-search-modal .modal-dialog {
        margin: 15px;
    }

    .rare-search-body {
        padding: 55px 25px 35px;
    }

    .rare-search-body h2 {
        font-size: 25px;

        margin-bottom: 25px;
    }

    .rare-search-close {
        top: 15px;
        right: 15px;

        width: 34px;
        height: 34px;
    }

    .rare-search-form input {
        height: 50px;

        font-size: 13px;
    }

    .rare-search-form button {
        height: 50px;
        width: 45px;
    }

    .rare-search-categories {
        margin-top: 28px;
    }

    .rare-search-tags a {
        font-size: 9px;
    }

}

/* search box modal end */



/* offer section start */


.rare-offer-section {
    padding: 20px 0;

    background: #ffffff;

    font-family: "Lato", sans-serif;
}



.rare-offer-heading {
    margin-bottom: 35px;

    text-align: center;
}

.rare-offer-heading span {
    display: block;

    margin-bottom: 8px;

    color: #999999;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-offer-heading h2 {
    margin: 0;

    color: #000000;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;
}


/* =========================================
   OFFER CARD
========================================= */

.rare-offer-card {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 45px;

    background: #f5f3ef;
}


/* Second Card */

.rare-offer-card-second {
    background: #f1f1f1;
}


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

.rare-offer-content {
    position: relative;

    z-index: 3;

    width: 55%;
}

.rare-offer-small {
    display: block;

    margin-bottom: 12px;

    color: #777777;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}

.rare-offer-content h3 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 38px;
    line-height: 1.05;

    font-weight: 400;
}

.rare-offer-content h3 em {
    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;
}

.rare-offer-content p {
    max-width: 300px;

    margin: 0 0 20px;

    color: #666666;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   DISCOUNT
========================================= */

.rare-offer-discount {
    display: flex;
    align-items: baseline;

    gap: 7px;

    margin-bottom: 25px;
}

.rare-offer-discount strong {
    color: #000000;

    font-size: 42px;
    line-height: 1;

    font-weight: 400;
}

.rare-offer-discount span {
    color: #555555;

    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================================
   SECOND CARD HIGHLIGHT
========================================= */

.rare-offer-highlight {
    display: flex;
    flex-direction: column;

    margin-bottom: 25px;
}

.rare-offer-highlight span {
    color: #999999;

    font-size: 8px;

    letter-spacing: 2px;
}

.rare-offer-highlight strong {
    margin-top: 3px;

    color: #000000;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 1px;
}


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

.rare-offer-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 50%;
    height: 100%;

    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.rare-offer-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.6s ease;
}

.rare-offer-card:hover .rare-offer-image img {
    transform: scale(1.05);
}


/* =========================================
   DECORATIVE LETTER
========================================= */

.rare-offer-pattern {
    position: absolute;

    right: 30px;
    top: -35px;

    color: rgba(0, 0, 0, 0.035);

    font-family: "Playfair Display", serif;

    font-size: 220px;
    line-height: 1;

    z-index: 1;

    pointer-events: none;
}



.rare-offer-btn {
    position: relative;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 125px;
    height: 44px;

    padding: 0 18px;

    border: 1px solid #000000;
    border-radius: 0;

    background: #000000;

    color: #ffffff;

    font-size: 12px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.rare-offer-btn i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.rare-offer-btn:hover {
    background: #ffffff;

    color: #000000;
}

.rare-offer-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rare-offer-section {
        padding: 20px 0;
    }

    .rare-offer-card {
        min-height: 350px;

        padding: 35px;
    }

    .rare-offer-content h3 {
        font-size: 32px;
    }

    .rare-offer-discount strong {
        font-size: 35px;
    }

}



@media (max-width: 575px) {

    .rare-offer-section {
        padding: 20px 0;
    }

    .rare-offer-heading {
        margin-bottom: 25px;
    }

    .rare-offer-heading h2 {
        font-size: 27px;
    }

    .rare-offer-card {
        /* min-height: 420px; */

        align-items: flex-start;

        padding: 30px 25px;
    }

    .rare-offer-content {
        width: 62%;
    }

    .rare-offer-content h3 {
        font-size: 29px;
    }

    .rare-offer-content p {
        font-size: 11px;
    }

    .rare-offer-discount strong {
        font-size: 32px;
    }

    .rare-offer-image {
        width: 52%;

        right: -8%;

        height: 100%;
    }

    .rare-offer-pattern {
        right: 10px;

        font-size: 150px;
    }

    .rare-offer-btn {
        height: 42px;

        min-width: 115px;
    }

}

/* offer end */



/*  */


