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

html,
body {
    height: 100%;
    width: 100%;
    font-family: Philosopher, sans-serif;
    overflow-x: hidden;
}

.main {
    z-index: 1;
}

.main .nav {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* This ensures it respects the iPhone's top notch area */
    padding-top: env(safe-area-inset-top);
    z-index: 1000;
}

.main .nav h3 {
    display: none;
}

.main .nav .ncentre {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .nav .ncentre a {
    font-size: 1.2vw;
    font-weight: 600;
    margin-right: 1vw;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}

.main .nav .nright button {
    padding: 0.5vw 0.9vw;
    border-radius: 20px;
    background-color: lightgreen;
}

.main .nav .nright button a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2vw;
    color: black;
    text-transform: capitalize;
}

.main .page1 {
    width: 100%;
    height: calc(100% - 110px);
}

.main .page1 .swiper {
    width: 100%;
    height: 100%;
}

.main .page1 .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .page1 .swiper-slide a {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main .page1 .swiper-slide video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main .page1 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main .page2 {
    margin: 1.5vw;
}

.main .page2 .moving-text {
    white-space: nowrap;
    overflow-x: auto;
}

.main .page2 .moving-text h1 {
    font-size: 9vw;
    font-weight: 500;
    display: inline-block;
}

.main .page2 .moving-text .cont {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.main .page2 .moving-text .gola {
    height: 70px;
    width: 70px;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
    margin: 1vw 2vw;
}

.main .page2 .moving-text::-webkit-scrollbar {
    display: none;
}

@keyframes move {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.main .page3 {
    width: 100%;
    min-height: 100vh;
    padding: 2vw 6vw;
}

.main .page3 h1 {
    font-size: 4.5vw;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
}

.main .page3 .page3-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* Essential for iPhone alignment */
    overflow: hidden;
}

.main .page3 .page3-container .page3-elem1 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main .page3 .page3-container .page3-elem1 img {
    width: 95%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-bottom: 1vw;
}

.main .page3 .page3-container .page3-elem2 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main .page3 .page3-container .page3-elem2 img {
    width: 95%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-bottom: 1vw;
}

.main .page4 {
    width: 100%;
    height: 100vh;
    margin-top: 2vw;
    padding: 2vh 5vw;
}

.main .page4 h1 {
    border-bottom: 1.8px solid #000;
    margin-bottom: 1vw;
    font-size: 4.5vw;
    font-weight: 400;
    display: flex;
    align-items: start;
    justify-content: center;
}

.main .page4 .swiper {
    width: 100%;
    height: 90%;
    padding: 2vh 5vw;
}

.main .page4 .swiper-slide {
    width: 400px !important;
    text-align: center;
    font-size: 18px;
    border: 1.2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .page4 .swiper-slide .slider-1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main .page4 .swiper-slide .slider-1 .slide-top {
    width: 100%;
}

.main .page4 .swiper-slide .slider-1 .slide-top img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.main .page4 .swiper-slide .slider-1 .slide-bottom {
    width: 100%;
    border-top: 1.58px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main .page4 .swiper-slide .slider-1 .slide-bottom h3 {
    text-align: start;
    font-size: 1.4vw;
    font-weight: 400;
    margin-top: 1.5vw;
}

.main .page4 .swiper-slide .slider-1 .slide-bottom button {
    width: 80%;
    margin-top: 1.2vw;
    background-color: #000;
    color: #fff;
    margin-right: 1vw;
}

.main .page4 .swiper-slide .slider-1 .slide-bottom button a {
    font-size: 1.5vw;
    font-weight: 500;
    text-transform: none;
    text-transform: capitalize;
    color: #fff;
    padding: 0.5vh 1vw;
}

.main .page4 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main .page5 {
    width: 100%;
    margin-top: 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vh 5vw;
}

.main .page5 .pleft {
    width: 50%;
    margin-right: 3vw;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.main .page5 .pleft h1 {
    font-size: 3vw;
    font-weight: 400;
    margin-bottom: 2.5vw;
}

.main .page5 .pleft p {
    font-size: 1.2vw;
    font-weight: 400;
    margin-bottom: 2.5vw;
}

.main .page5 .pleft button {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1vw;
    padding: 0.8vh 1.1vw;
    background-color: #000;
}

.main .page5 .pleft button a {
    text-decoration: none;
    color: #fff;
}

.main .page5 .pright {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .page5 .pright img {
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main .page6 {
    width: 100%;
    height: 50vh;
    background-color: plum;
    padding: 2vh 5vw;
}

.main .page6 h1 {
    font-size: 4vw;
    text-align: center;
    font-weight: 400;
}

.main .page6 .features {
    width: 100%;
    background-color: #e8c03f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 2vw;
    position: relative;
    /* Avoid 'absolute' for text labels on mobile if possible */
    z-index: 10;
    margin: 10px 0;
}

.main .page6 .features img {
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main .footer {
    width: 100%;
    min-height: 30vh;
    margin-top: 2vw;
    background-color: beige;
    border-top: 1.8px solid #000;
    padding: 2vh 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main .footer .footer-top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2vw;
    flex-wrap: wrap;
}

.main .footer .footer-top .footer-1 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 30%;
}

.main .footer .footer-top .footer-1 h3 {
    font-size: 2vw;
    font-weight: 500;
    margin-bottom: 2vw;
}

.main .footer .footer-top .footer-1 .slinks {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.main .footer .footer-top .footer-1 .slinks a {
    font-size: 1.2vw;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5vw;
}

.main .footer .footer-top .footer-2 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 30%;
    margin-bottom: 3vw;
}

.main .footer .footer-top .footer-2 h3 {
    font-size: 2vw;
    font-weight: 500;
    margin-bottom: 2vw;
}

.main .footer .footer-top .footer-2 .ilinks {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.main .footer .footer-top .footer-2 .ilinks a {
    font-size: 1.2vw;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5vw;
}

.main .footer .footer-top .footer-3 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 40%;
}

.main .footer .footer-top .footer-3 h1 {
    font-size: 4.5vw;
    font-weight: 400;
    margin-bottom: 2vw;
    text-transform: uppercase;
}

.main .footer .footer-top .footer-3 .icons i {
    font-size: 1.5vw;
    margin-right: 1vw;
}

.main .footer .footer-top .footer-3 .icons a {
    font-size: 1.2vw;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5vw;
}

.main .footer .footer-bottom {
    width: 100%;
    border-top: 1.8px solid #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.main .footer .footer-bottom h3 {
    font-size: 1.4vw;
    font-weight: 500;
    margin-top: 1.2vw;
}

.main .footer .footer-bottom h3 a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.main .contact-page {
    width: 100%;
    min-height: 100vh;
    margin-top: 2vw;
    padding: 2vh 5vw;
}

.main .contact-page h1 {
    border-bottom: 1.8px solid #000;
    font-size: 5vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .contact-page .contact-info {
    margin-top: 1.5vw;
}

.main .contact-page .contact-info h3 {
    font-size: 1.5vw;
    font-weight: 500;
    margin-bottom: 1vw;
}

.main .contact-page .contact-map {
    width: 100%;
}

.main .contact-page .contact-map iframe {
    width: 100%;
}

.main .perfume {
    width: 100%;
    min-height: auto;
    padding: 2vh 5vw;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-margin-top: 120px;
}

.main .perfume h1 {
    width: 100%;
    text-align: center;
    font-size: 4.5vw;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1.8px solid #000;
}

.main .perfume .pheading {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    max-width: 100vw;
    overflow-x: hidden;
}

.main .perfume .pheading .prleft {
    flex: 0 0 280px;
    min-width: 240px;
    max-width: 320px;
    margin-top: 1.5vw;
    padding: 1.2vw;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.main .perfume .pheading .prleft .pr-left-fix {
    width: 100%;
    position: sticky;
    top: 110px;
}

.main .perfume .pheading .prleft .pr-left-fix h2 {
    font-size: 2.2vw;
    font-weight: 400;
    width: 100%;
    gap: 20px;
    text-align: start;
    text-transform: uppercase;
    margin-bottom: 1vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category1 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0.9vw;
    border-bottom: 1.5px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category1 h3 {
    font-size: 1.5vw;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1.2px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category1 h3 a {
    text-decoration: none;
    color: #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category1 .pr-list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 1vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category1 .pr-list a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.2vw;
    font-weight: 400;
    color: #000;
    margin-top: 0.5vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category2 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0.9vw;
    border-bottom: 1.5px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category2 h3 {
    font-size: 1.5vw;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1.2px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category2 .pr-list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 1vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category2 .pr-list a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.2vw;
    font-weight: 400;
    color: #000;
    margin-top: 0.5vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category3 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0.9vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category3 h3 {
    font-size: 1.5vw;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1.2px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category3 .pr-list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 1vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category3 .pr-list a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.2vw;
    font-weight: 400;
    color: #000;
    margin-top: 0.5vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0.9vw;
    border-top: 1.5px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 h3 {
    font-size: 1.5vw;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1.2px solid #000;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 .pr-filter {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    margin-top: 0.8vw;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 .pr-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5vw;
    flex-wrap: wrap;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 label {
    font-size: 1.2vw;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    width: 35%;
    min-width: 130px;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 select {
    width: 65%;
    padding: 0.5vw 0.8vw;
    border: 1.5px solid #000;
    font-size: 1.2vw;
    font-weight: 400;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    min-width: 160px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color-scheme: dark;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 select:focus {
    outline: none;
    border-color: #000;
}

.main .perfume .pheading .pr-left-fix .pr-category4 select option {
    background-color: #fff;
    color: #000;
}

.main .perfume .pheading .pr-left-fix .pr-category4 select option:checked,
.main .perfume .pheading .pr-left-fix .pr-category4 select option:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 .pr-filter-actions {
    display: flex;
    gap: 0.8vw;
    justify-content: flex-start;
    margin-top: 0.5vw;
    flex-wrap: wrap;
}

.main .perfume .pheading .prleft .pr-left-fix .pr-category4 .pr-filter-actions button {
    padding: 0.6vw 1.2vw;
    border: 1.5px solid #000;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2vw;
    cursor: pointer;
    min-width: 120px;
    flex: 1 1 120px;
}

.main .perfume .pheading .pright {
    flex: 1 1 0;
    min-width: 0;
    min-height: 100vh;
    margin-top: 1.5vw;
    margin-left: 1.5vw;
}

.main .perfume .pheading .pright .pr-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow-x: hidden;
}

.main .perfume .pheading .pright .pr-right .pbox1 {
    margin: 1vw;
    flex: 0 1 calc(50% - 2vw);
    min-width: 300px;
    max-width: 100%;
    padding: 2vw;
    border: 1.5px solid #000;
    box-sizing: border-box;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-img {
    width: 100%;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-img img {
    width: 100%;
    display: block;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info {
    width: 100%;
    padding-top: 1.2vw;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h4 {
    font-size: 1.2vw;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0.2vw;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h3 {
    font-size: 1.9vw;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.4;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info .price {
    font-size: 1.55vw;
    font-weight: 600;
    margin: 0.8vw 0 1vw 0;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info button {
    margin-top: 0.6vw;
    font-size: 1.5vw;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
    background-color: #000;
    padding: 0.4vw;
}

.main .perfume .pheading .pright .pr-right .pbox1 .pbox-info button a {
    text-decoration: none;
    color: #fff;
}

.full-scr {
    display: none;
    height: 100vh;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: transform ease 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

.full-scr.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.full-scr .full-div1 {
    height: 100%;
    width: 100%;
    background-color: beige;
}

.full-scr .full-div1 a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 5.2vw;
    font-weight: 400;
}

#sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    width: 320px;
    z-index: 9999;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease;
    border: 1px solid #eee;
}

#sales-notification.hidden {
    transform: translateY(150%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.product-image img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 15px;
}

.notification-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

#notify-customer {
    font-weight: bold;
    color: #333;
}

#notify-product {
    color: #666;
}

#notify-time {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 4px;
}

.close-notify {
    background: none;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: #ccc;
}


/*--------------------------------------------------------------------*/


/* WhatsApp Floating Button Styling */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

#local-proof-box {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    border-left: 5px solid #b8860b;
    /* Yashel Gold Accent */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    width: 280px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.proof-hidden {
    transform: translateX(-120%);
    opacity: 0;
}

.proof-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.proof-icon {
    font-size: 24px;
}

#proof-text {
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

#proof-text strong {
    color: #b8860b;
}

#proof-time {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Mobile Responsiveness */

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 600px) {
    .identity-text {
        padding: 20px;
        /* Use px instead of vw for predictable spacing */
        line-height: 1.6;
        display: block;
        clear: both;
        /* Ensures it starts after the logo/menu */
    }
    /* Mobile Filter Modal - Bottom Sheet */
    .filter-modal {
        align-items: flex-end;
        justify-content: flex-end;
        padding: 0;
        background: rgba(0, 0, 0, 0.5);
    }
    .filter-modal-inner {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 85vh;
        border-left: 2px solid #000;
        border-right: 2px solid #000;
        border-top: 2px solid #000;
        border-bottom: none;
    }
    .filter-modal-header {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    .filter-modal-header h2 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    #filter-modal-body {
        padding: 0.8rem 1.2rem 1rem;
        max-height: calc(85vh - 60px);
    }
    .filter-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .filter-clear-all {
        padding: 0.5rem 0;
        margin-bottom: 0.8rem;
    }
    .filter-clear-all a {
        font-size: 0.9rem;
    }
    .filter-section {
        margin-bottom: 0;
        border-bottom: 1px solid #ddd;
    }
    .filter-section-header {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }
    .filter-section-header h3 {
        font-size: 0.95rem;
        font-weight: 600;
    }
    .filter-option {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    .filter-option label {
        font-size: 0.9rem;
    }
    .filter-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    .filter-bottom {
        padding: 1rem 0;
        margin-top: 0.8rem;
    }
    .view-results-btn {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .no-products-msg {
        padding: 1.5rem;
        font-size: 0.95rem;
        margin: 1.5rem 5vw;
        background: #fff;
        border: 2px solid #000;
        border-radius: 0;
        color: #000;
        flex: 0 0 100%;
    }
    .main .nav {
        height: 80px;
        width: 100%;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: env(safe-area-inset-top);
        z-index: 1000;
    }
    .main .nav h3 {
        display: block;
        padding: 2vw 5vw;
        border: 1px solid #000;
        border-radius: 50px;
        font-size: 4.8vw;
        font-weight: 400;
    }
    .main .nav .ncentre {
        display: none;
        align-items: center;
        justify-content: center;
    }
    .main .nav .ncentre a {
        font-size: 1.2vw;
        font-weight: 600;
        margin-right: 1vw;
        text-decoration: none;
        text-transform: uppercase;
        color: black;
    }
    .main .nav .nright {
        display: none;
    }
    .main .nav .nright button {
        padding: 0.5vw 0.9vw;
        border-radius: 20px;
        background-color: lightgreen;
    }
    .main .nav .nright button a {
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2vw;
        color: black;
        text-transform: capitalize;
    }
    .main .page1 {
        width: 100%;
        height: calc(50vh - 50px);
    }
    .main .page1 .swiper {
        width: 100%;
        height: 100%;
    }
    .main .page1 .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main .page1 .swiper-slide a {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .main .page1 .swiper-slide video {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        margin-top: 21vw;
    }
    .main .page1 .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .main .page2 {
        width: 100%;
        height: 5vh;
        margin: 2.5vw;
    }
    .main .page2 .moving-text {
        white-space: nowrap;
        overflow-x: auto;
    }
    .main .page2 .moving-text h1 {
        font-size: 11vw;
        font-weight: 500;
        display: inline-block;
    }
    .main .page2 .moving-text .cont {
        white-space: nowrap;
        display: inline-block;
        animation-name: move;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
    .main .page2 .moving-text .gola {
        height: 15px;
        width: 15px;
        background-color: #000;
        border-radius: 50%;
        display: inline-block;
        margin: 1vw 2vw;
    }
    .main .page2 .moving-text::-webkit-scrollbar {
        display: none;
    }
    @keyframes move {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-100%);
        }
    }
    .main .page3 {
        width: 100%;
        min-height: 120vh;
        padding: 2vw 6vw;
        margin-top: 8vw;
    }
    .main .page3 h1 {
        font-size: 11.5vw;
        font-weight: 500;
        text-align: center;
        margin-bottom: 5.5vw;
        text-transform: uppercase;
    }
    .main .page3 .page3-container {
        width: 100%;
        min-height: 100vh;
        justify-content: space-between;
        flex-direction: column;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        /* Essential for iPhone alignment */
        overflow: hidden;
    }
    .main .page3 .page3-container .page3-elem1 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .main .page3 .page3-container .page3-elem1 img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        margin-bottom: 1vw;
    }
    .main .page3 .page3-container .page3-elem2 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        line-height: -5vw;
    }
    .main .page3 .page3-container .page3-elem2 img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        margin-bottom: 1vw;
    }
    .main .page4 {
    width: 100%;
    height: 60vh;
    padding: 2vh 5vw;
  }
  .main .page4 h1 {
    border-bottom: 1.8px solid #000;
    margin-bottom: 1vw;
    font-size: 9.5vw;
    font-weight: 400;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  .main .page4 .swiper {
    width: 100%;
    padding: 2vh 5vw;
  }
  .main .page4 .swiper-slide {
    width: 160px !important;
    height: 40vh;
    text-align: center;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main .page4 .swiper-slide .slider-1 {
    width: 90%;
  }
  .main .page4 .swiper-slide .slider-1 .slide-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main .page4 .swiper-slide .slider-1 .slide-top img {
    width: 150px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .main .page4 .swiper-slide .slider-1 .slide-bottom {
    width: 100%;
    border-top: 1.58px solid #000;
  }
  .main .page4 .swiper-slide .slider-1 .slide-bottom h3 {
    width: 100%;
    text-align: start;
    font-size: 5.4vw;
    font-weight: 400;
    margin-top: 1.5vw;
  }
  .main .page4 .swiper-slide .slider-1 .slide-bottom button {
    width: 100%;
    background-color: #000;
    color: #fff;
    margin-right: 1vw;
  }
  .main .page4 .swiper-slide .slider-1 .slide-bottom button a {
    font-size: 2.5vw;
    font-weight: 500;
    text-transform: none;
    text-transform: capitalize;
    color: #fff;
    padding: 0.5vh 1vw;
  }
  .main .page4 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
    .main .page5 {
        width: 100%;
        display: block;
        padding: 2vh 5vw;
    }
    .main .page5 .pleft {
        width: 100%;
        margin-right: 3vw;
        display: flex;
        align-items: start;
        justify-content: space-between;
        padding: 2vh 3vw;
    }
    .main .page5 .pleft h1 {
        font-size: 7vw;
        font-weight: 400;
        margin-bottom: 6.5vw;
        border-bottom: 1.2px solid #000;
    }
    .main .page5 .pleft p {
        font-size: 4.2vw;
        font-weight: 400;
    }
    .main .page5 .pleft button {
        text-decoration: none;
        text-transform: uppercase;
        font-size: 3.5vw;
        padding: 0.8vh 1.1vw;
        background-color: rgba(0, 0, 0, 0.8235294118);
    }
    .main .page5 .pleft button a {
        text-decoration: none;
        color: #fff;
    }
    .main .page5 .pright {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-image: url('Founder landscape Image.png');
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main .page5 .pright img {
        display: none;
    }
    .main .page6 {
        width: 100%;
        min-height: 40vh;
        background-color: plum;
        padding: 2vh 5vw;
    }
    .main .page6 h1 {
        font-size: 9vw;
        text-align: center;
        font-weight: 400;
        margin-bottom: 7vw;
    }
    .main .page6 .features {
        width: 100%;
        background-color: #e8c03f;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1vh 2vw;
        position: relative;
        /* Avoid 'absolute' for text labels on mobile if possible */
        z-index: 10;
        margin: 10px 0;
    }
    .main .page6 .features img {
        height: 150px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .main .footer {
        width: 100%;
        height: auto;
        min-height: 70vh;
        margin-top: 2vw;
        background-color: beige;
        border-top: 1.8px solid #000;
        padding: 5vh 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .main .footer .footer-top {
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin-top: 1.5vw;
        gap: 1.5vw;
    }
    .main .footer .footer-top .footer-1,
    .main .footer .footer-top .footer-2,
    .main .footer .footer-top .footer-3 {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0.8vw;
    }
    .main .footer .footer-top .footer-1 h3,
    .main .footer .footer-top .footer-2 h3 {
        font-size: 5vw;
        font-weight: 500;
        margin-bottom: 1.2vw;
    }
    .main .footer .footer-top .footer-1 .slinks a,
    .main .footer .footer-top .footer-2 .ilinks a {
        font-size: 3.2vw;
        margin-bottom: 0.5vw;
    }
    .main .footer .footer-top .footer-3 h1 {
        font-size: 6vw;
        font-weight: 400;
        margin-bottom: 1.5vw;
        text-transform: uppercase;
    }
    .main .footer .footer-top .footer-3 .icons i {
        font-size: 4vw;
        margin-right: 1vw;
    }
    .main .footer .footer-bottom h3 {
        font-size: 3vw;
        font-weight: 500;
        margin-top: 1vw;
    }
    .main .contact-page {
        width: 100%;
        min-height: 100vh;
        margin-top: 2vw;
        padding: 2vh 5vw;
    }
    .main .contact-page h1 {
        border-bottom: 1.8px solid #000;
        font-size: 10vw;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main .contact-page .contact-info {
        margin-top: 2.5vw;
        margin-bottom: 3vw;
    }
    .main .contact-page .contact-info h3 {
        font-size: 4.5vw;
        font-weight: 500;
        margin-bottom: 3vw;
    }
    .main .contact-page .contact-map {
        width: 100%;
    }
    .main .contact-page .contact-map iframe {
        width: 100%;
    }
    .main .perfume {
        width: 100%;
        min-height: auto;
        padding: 2vh 5vw;
    }
    .main .perfume .cat-heading {
        width: 100%;
        text-align: center;
        font-size: 8.5vw;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 2px solid #000;
        padding-bottom: 2vw;
        margin-bottom: 3vw;
    }
    .mobile-filter-btn {
        width: 100%;
        background-color: #000;
        color: #fff;
        font-size: 4.5vw;
        font-weight: 600;
        text-transform: uppercase;
        padding: 3vw 0;
        border: none;
        margin-bottom: 4vw;
        cursor: pointer;
    }
    .main .perfume .pheading {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: relative;
    }
    .main .perfume .pheading .prleft {
        width: 100%;
        height: auto;
        margin-top: 1.5vw;
        padding: 1.2vw;
        display: block;
        position: relative;
        top: auto;
        background-color: beige;
        overflow: visible;
    }
    .main .perfume .pheading .prleft .pr-left-fix {
        width: 100%;
        height: auto;
        position: relative;
        top: auto;
    }
    .main .perfume .pheading .prleft .pr-left-fix h2 {
        font-size: 6.5vw;
        font-weight: 400;
        width: 100%;
        gap: 20px;
        text-align: start;
        text-transform: uppercase;
        margin-bottom: 1vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category1 {
        width: 100%;
        display: none;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        padding: 0.9vw;
        border-bottom: 1.5px solid #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category1 h3 {
        font-size: 1.5vw;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 1.2px solid #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category1 h3 a {
        text-decoration: none;
        color: #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category1 .pr-list {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin-top: 1vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category1 .pr-list a {
        text-decoration: none;
        text-transform: capitalize;
        font-size: 1.2vw;
        font-weight: 400;
        color: #000;
        margin-top: 0.5vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category2 {
        width: 100%;
        display: none;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        padding: 0.9vw;
        border-bottom: 1.5px solid #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category2 h3 {
        font-size: 1.5vw;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 1.2px solid #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category2 .pr-list {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin-top: 1vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category2 .pr-list a {
        text-decoration: none;
        text-transform: capitalize;
        font-size: 1.2vw;
        font-weight: 400;
        color: #000;
        margin-top: 0.5vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category3 {
        width: 100%;
        display: none;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        padding: 0.9vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category3 h3 {
        font-size: 1.5vw;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 1.2px solid #000;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category3 .pr-list {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin-top: 1vw;
    }
    .main .perfume .pheading .prleft .pr-left-fix .pr-category3 .pr-list a {
        text-decoration: none;
        text-transform: capitalize;
        font-size: 1.2vw;
        font-weight: 400;
        color: #000;
        margin-top: 0.5vw;
    }
    .main .perfume .pheading .pright {
        width: 100%;
        min-height: auto;
        margin-top: 1.5vw;
        margin-left: 0;
    }
    .main .perfume .pheading .pright .pr-right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 {
        margin: 0.7vw;
        width: calc(100% - 1.4vw);
        padding: 1.6vw;
        border: 1.5px solid #000;
        max-width: 100%;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-img {
        width: 100%;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-img img {
        width: 100%;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info {
        width: 100%;
        padding: 2.9vw;
        display: flex;
        flex-direction: column;
        gap: 1.2vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h4 {
        font-size: 4.2vw;
        font-weight: 400;
        text-transform: capitalize;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h3 {
        font-size: 5.8vw;
        font-weight: 400;
        text-transform: capitalize;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info button {
        margin-top: 0.6vw;
        font-size: 4.2vw;
        font-weight: 600;
        text-transform: uppercase;
        width: 100%;
        color: #fff;
        background-color: #000;
        padding: 0.25vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info .price {
        font-size: 6vw;
        font-weight: 800;
        margin: 1.2vw 0 1.6vw 0;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info button a {
        text-decoration: none;
        color: #fff;
    }
    .full-scr {
        display: block;
        height: 100vh;
        width: 100%;
        background-color: #fff;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        transition: transform ease 0.5s;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
    }
    .full-scr .full-div1 {
        height: 60%;
        width: 100%;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10vh 6vw;
        margin-top: 5vh;
        gap: 1.5rem;
    }
    .full-scr .full-div1 a {
        width: 70%;
        text-align: center;
        padding: 0.5vw 1vw;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 6.2vw;
        font-weight: 400;
        color: #fff;
        border: 1.5px solid #000;
        background-color: #000;
    }
    .full-scr .full-div1 .menu-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1vw;
    }
    .full-scr .full-div1 .menu-group .dropdown-toggle {
        width: 80%;
        max-width: 480px;
        background: #000;
        border: 1.5px solid #000;
        color: #fff;
        font-size: 6.2vw;
        font-weight: 400;
        text-transform: uppercase;
        padding: 0.5vw 1vw;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }
    .full-scr .full-div1 .menu-group .dropdown-toggle .caret {
        margin-left: 0.6rem;
        transition: transform 0.2s ease;
        font-size: 6.2vw;
        line-height: 1;
    }
    .full-scr .full-div1 .menu-group.open .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .full-scr .full-div1 .menu-group .dropdown-menu {
        display: none;
        width: 80%;
        max-width: 480px;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 0.8rem;
        padding: 0;
    }
    .full-scr .full-div1 .menu-group.open .dropdown-menu {
        display: flex;
    }
    .full-scr .full-div1 .menu-group .dropdown-menu a {
        width: 100%;
        color: #fff;
        background: #000;
        padding: 0.5vw 1vw;
        border: 1.5px solid #000;
        text-transform: capitalize;
        text-decoration: none;
        font-size: 5.2vw;
        font-weight: 400;
        text-align: left;
    }
}


/* Medium screens (tablet / small desktop): stack filters above product grid and improve spacing */

@media (max-width: 1000px) {
    .main .perfume .pheading {
        flex-direction: column;
        align-items: flex-start;
    }
    .main .perfume .pheading .prleft {
        width: 100%;
        position: relative;
        height: auto;
        margin-top: 1.5vw;
        padding: 1.5vw;
        background-color: beige;
    }
    .main .perfume .pheading .prleft .pr-left-fix {
        position: relative;
        top: auto;
        height: auto;
    }
    .main .perfume .pheading .pright {
        width: 100%;
        margin-top: 2vw;
        margin-left: 0;
    }
    .main .perfume .pheading .pright .pr-right {
        justify-content: center;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 {
        width: calc(50% - 2vw);
        margin: 1vw;
        padding: 1.2vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info {
        padding: 0 0.8vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h4,
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h3 {
        margin-left: 0.4vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info .price {
        margin-left: 0.4vw;
    }
}


/* Mobile filter open button */

.open-filter-btn {
    display: none;
}

@media (max-width: 1000px) {
    .main .perfume .pheading .prleft {
        display: none;
    }
    .open-filter-btn {
        display: block;
        width: 100%;
        padding: 1rem 1.2rem;
        margin: 1.5vw 0;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        border: 2px solid #000;
        background: #000;
        color: #fff;
        border-radius: 0;
        cursor: pointer;
    }
}


/* Filter modal (mobile) */

.filter-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 9999;
}

.filter-modal.open {
    display: flex;
}

.filter-modal-inner {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.filter-modal-header {
    padding: 1.2rem 1.2rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.filter-modal-header h2 {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    margin: 0;
}

.close-filter {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
}

#filter-modal-body {
    padding: 1rem 1.2rem 1.4rem;
    overflow-y: auto;
    flex: 1;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.filter-clear-all {
    padding: 0 0 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.filter-clear-all a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-clear-all a:hover {
    text-decoration: underline;
}

.filter-section {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    user-select: none;
}

.filter-section-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.filter-toggle {
    font-size: 0.8rem;
    color: #666;
    transition: transform 0.2s ease;
}

.filter-section-header.collapsed .filter-toggle {
    transform: rotate(-90deg);
}

.filter-section-body {
    display: block;
    padding-bottom: 0.5rem;
}

.filter-section-body.collapsed {
    display: none;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border: none;
}

.filter-option label {
    display: flex;
    align-items: center;
    flex: 1;
    cursor: pointer;
    font-size: 0.95rem;
    margin: 0;
}

.filter-option input[type="checkbox"] {
    margin-right: 0.8rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.filter-option span {
    display: inline;
    color: #000;
}


/* Highlight selected options inside mobile sort & filter modal */

#filter-modal .filter-option input.filter-checkbox:checked+span {
    font-weight: 600;
}

.filter-option .count {
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    min-width: 40px;
    text-align: right;
}

.filter-bottom {
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}

.view-results-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.view-results-btn:hover {
    background: #222;
}

.no-products-msg {
    width: 100%;
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
    color: #000;
    font-size: 1rem;
    background: #fff;
    border: 2px solid #000;
    border-radius: 0;
    margin: 2rem 0;
}

.no-products-msg p {
    margin: 0;
}

html.modal-open {
    overflow: hidden;
}


/* Mobile Filter Bottom Sheet Styles */

.mobile-filter-btn {
    display: none;
    /* hidden on desktop */
}

@media (max-width: 600px) {
    .mobile-filter-btn {
        display: block;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin: 2vw 0;
        padding: 2vw;
        border: 1px solid #ccc;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-img {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info {
        width: 60%;
        padding-left: 3vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h4 {
        font-size: 3.5vw;
        margin-bottom: 1vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info h3 {
        font-size: 4vw;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 2vw;
    }
    .main .perfume .pheading .pright .pr-right .pbox1 .pbox-info button {
        width: auto;
        padding: 1vw 3vw;
        font-size: 3vw;
    }
}

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: flex-end;
}

.bottom-sheet.open {
    display: flex;
}

.bottom-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet.open .bottom-sheet-overlay {
    opacity: 1;
}

.bottom-sheet-content {
    width: 100%;
    height: 85vh;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bottom-sheet.open .bottom-sheet-content {
    transform: translateY(0);
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.sheet-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.sheet-clear-btn {
    background: none;
    border: none;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
}

.sheet-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-option input:checked~.checkmark {
    background-color: #000;
    border-color: #000;
}

.filter-option input:checked~.checkmark:after {
    content: "✓";
    color: white;
    font-size: 14px;
}

.sheet-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.sheet-view-results {
    width: 100%;
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

.product-page {
    width: 100%;
    padding: 2vh 5vw;
    margin-top: 110px;
    overflow-x: hidden;
}

.product-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap;
    margin-bottom: 2vw;
}

.product-back {
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    padding: 0.6vw 1.2vw;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-top h1 {
    flex: 1 1 300px;
    font-size: 4.2vw;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1.8px solid #000;
    padding-bottom: 1vw;
}

.product-layout {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3vw;
    flex-wrap: wrap;
}

.product-media {
    flex: 0 1 380px;
    width: min(40vw, 420px);
    border: 2px solid #000;
    padding: 1.5vw;
    background: #fff;
}

.product-media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product-details {
    flex: 1 1 320px;
    width: 100%;
    border: 2px solid #000;
    padding: 2vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.product-meta p {
    font-size: 1.5vw;
    font-weight: 400;
    margin: 0.2vw 0;
    color: #000;
}

.meta-label {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 0.6vw;
}

.product-desc {
    font-size: 1.6vw;
    line-height: 1.5;
    margin: 0;
}

.product-actions {
    margin-top: 0.5vw;
}

.product-show-now {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 1vw 2vw;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #000;
    cursor: pointer;
}

@media (max-width: 600px) {
    .product-page {
        padding: 2vh 5vw;
        margin-top: 80px;
    }
    .product-top h1 {
        font-size: 7.5vw;
    }
    .product-media {
        width: 100%;
        flex: 1 1 auto;
    }
    .product-meta p {
        font-size: 4.5vw;
    }
    .product-desc {
        font-size: 4.2vw;
    }
    .product-show-now {
        width: 100%;
        text-align: center;
        padding: 2.2vh 3vw;
        font-size: 4.5vw;
    }
}