@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #39593d;
    --color-foreground: 18, 18, 18;
    --color-background-contrast: 191, 191, 191;
    --font-playfair: "Playfair Display", serif;
}

body {
    overflow-x: hidden;
    font-family: serif;
    font-size: 16px;
    color: rgba(var(--color-foreground), .75);
    font-weight: 600;
    line-height: 1.8;
}

h1,
h2 {
    color: #000;
}

a {
    text-decoration: none;
    color: rgba(var(--color-foreground), .75);
}

/* ================= TOP MARQUEE ================= */
.topbar {
    background: var(--theme-color);
    overflow: hidden;
}

.marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
}

.marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 50px;
    display: inline-block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================= NAVBAR ================= */
.navbar {
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 10px;
}

.navbar-nav .nav-link.active {
    text-decoration: underline;
}

.nav-icons span {
    margin-left: 18px;
    cursor: pointer;
}

.navbar-brand img {
    max-width: 100px;
    max-height: unset;
}


header {
    width: 100%;
    transition: all 0.3s ease;
}

header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


/* Mobile adjustments */
@media (max-width: 991px) {
    .nav-icons {
        margin-top: 10px;
    }

    .nav-icons span {
        margin-left: 10px;
    }
}


/* ================= BLINKING DISCOUNT TEXT ================= */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.blink-text {
    font-family: sans-serif;
    font-size: 14px;
    animation: blink 1s infinite;
    font-weight: 600;
    color: #ff0000;
}

/* ================= PAY NOW SHAKE LEFT-RIGHT ================= */
@keyframes shakeLR {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

.pay-btn {
    background: rgb(35, 113, 236);
    color: #fff;
    padding: 5px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    max-width: 170px;
    border-radius: 3px;
    text-align: center;
    font-style: italic;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    animation: shakeLR 1s infinite;
}

.pay-btn span:first-child {
    font-size: 14px;
    line-height: 1.4;
}

.pay-btn span:last-child {
    font-size: 10px;
    color: #dddddd;
    line-height: 1;
}

/* ================= WHATSAPP PULSE ================= */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    animation: pulse 1.8s infinite;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Extra styling */
.product-img {
    max-width: 100%;
}

.price-old {
    text-decoration: line-through;
    color: #555555;
}

.text-muted {
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
}

.order-btn {
    background: rgb(29, 158, 6);
    color: rgb(255, 255, 255);
    padding: 16px 20px;
    width: 100%;
    margin-block: 10px;
    z-index: 10;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-radius: 26px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 7px 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out 0s;
    position: relative;
    -webkit-animation: previewRsiShaker1_live 2.86s infinite cubic-bezier(.35, .06, .2, .98) both;
    animation: previewRsiShaker1_live 2.86s infinite cubic-bezier(.35, .06, .2, .98) both;
}

@keyframes previewRsiShaker1_live {
    0% {
        transform: scaleX(1);
    }

    3%,
    6% {
        transform: scale3d(.97, .97, .97) rotate(-1deg);
    }

    9%,
    15%,
    21%,
    27% {
        transform: scale3d(1.03, 1.03, 1.03) rotate(1deg);
    }

    12%,
    18%,
    24% {
        transform: scale3d(1.03, 1.03, 1.03) rotate(-1deg);
    }

    30% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(1);
    }
}

.order-btn svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

.share-btn {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.icon-share {
    height: 16px;
    width: 16px;
    margin-right: 5px;
}


.review-section {
    background: #fff;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.rating-bars {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.rating-item {
    width: max-content;
}

/* ================= STARS ================= */
.review-section .stars {
    color: #1f7a6b;
    font-size: 14px;
    display: flex;
    gap: 3px;
    margin-bottom: 0;
}

.rating-summary h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.rating-summary small {
    font-weight: 600;
    color: #999;
    font-family: sans-serif;
}

/* ================= RATING BARS ================= */
.rating-bars .progress {
    height: 14px;
    min-width: 150px;
    background: #eaeaea;
    border-radius: 0;
}

.rating-bars .progress-bar {
    background: #1f7a6b;
}

/* ================= BUTTON ================= */
.btn-review {
    background: #1f7a6b;
    color: #fff;
    padding: 8px 50px;
    border-radius: 2px;
    font-weight: 600;
}

.btn-review:hover {
    background: #176457;
    color: #fff;
}


.sort-dropdown {
    position: relative;
    width: 120px;
}

.sort-toggle {
    font-weight: 600;
    color: #176457;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-toggle .arrow {
    font-size: 12px;
}

.sort-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    margin: 8px 0 0;
    display: none;
    z-index: 10;
}

.sort-menu li {
    color: #176457 !important;
    margin: 0;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
}

.sort-menu li:hover {
    background: #f5f5f5;
}

.sort-menu li.active {
    font-weight: 600;
}

.sort-menu li.highlight {
    color: #1f7a6b;
}

.sort-container {
    padding: 15px 0;
    border-top: 1px solid #eee;
}

/* ================= REVIEW ITEMS ================= */
.review-item {
    padding: 25px 0;
    border-top: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-item .stars {
    font-size: 18px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f7a6b;
    font-weight: 600;
}

.review-user i {
    position: relative;
    margin-right: 8px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(224, 224, 224, 0.5);
}

.review-date {
    color: #777;
    font-size: 13px;
}

.review-text {
    margin-top: 10px;
    color: #444;
}

.custom-pagination .page-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 8px 14px;
}

.custom-pagination .page-link:hover {
    background: transparent;
    color: #198754;
}

.custom-pagination .page-item.active .page-link {
    background: transparent;
    color: #198754;
    font-weight: 600;
}

.custom-pagination .page-link:focus {
    box-shadow: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .rating-wrapper {
        text-align: center;
    }

    .btn-review {
        margin-top: 20px;
    }

    .rating-bars {
        border: none;
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    background: #f5f5f5;
}

.section-title {
    font-weight: 600;
    letter-spacing: 2px;
}

.testimonialSwiper {
    padding: 25px 0;
}

.testimonial-card {
    background: #F8E9DF;
    border: 1px solid #0d5c4c;
    border-radius: 12px;
    padding: 30px 25px 60px;
    position: relative;
    height: 100%;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #0d5c4c;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.testimonial-card .stars {
    color: #f4b400;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-family: sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #535353;
    line-height: 1.7;
}

.testimonial-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 25px;
    border-top: 1px solid #0d5c4c;
    font-weight: 600;
    color: #0d5c4c;
}

/* NAVIGATION */

.testimonial-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.swiper-button-lock {
    display: flex !important;
}

.custom-nav {
    color: #fff !important;
    background: #0d5c4c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-prev,
.swiper-button-next {
    background-image: none;
    font-size: 18px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    display: none;
}

.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-rtl .swiper-button-next,
.testimonial-nav .swiper-button-next,
.testimonial-nav .swiper-rtl .swiper-button-prev {
    position: static !important;
}

/* ================= USP ================= */
.usp-section {
    background: #e6cf73;
}

.usp-section img {
    max-width: 60px;
    margin: auto;
}

.usp-section h6 {
    margin-top: 8px;
    font-weight: 600;
    color: black;
}

.usp-scroll {
    padding: 0 16px;
    /* prevents edge cutting */
    scroll-padding: 16px;
}

.footer {
    background-color: var(--theme-color);
    color: #ddd;
    padding: 60px 0 15px;
}

.footer .footer-content {
    margin-bottom: 30px;
}

.footer .footer-content p {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.footer .footer-content a {
    color: #ddd;
    text-decoration: none;
    margin-right: 10px;
}

.footer .footer-content a:hover {
    text-decoration: underline;
}

.footer .footer-content a.active {
    color: #fff;
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer .bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .bottom p {
    color: #ddd;
    font-size: 12px;
}

.footer h4 {
    margin-bottom: 10px;
    font-weight: bold;
}


@media screen and (max-width:767px) {
    body {
        font-size: 15px;
    }

    .usp-item {
        flex: 0 0 auto;
        min-width: 100px;
    }

    .usp-section img {
        max-width: 40px;
    }

    .usp-section h6 {
        font-size: 12px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler span {
    font-size: 23px;
}

#mobileSidebar {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Mobile Navbar Layout */
@media (max-width: 991px) {

    /* Sidebar */
    #mobileSidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
        z-index: 1050;
        padding: 20px;
    }

    #mobileSidebar.active {
        left: 0;
    }

    .sidebar-header {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .close-sidebar {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
    }

    .sidebar-menu li {
        margin-bottom: 20px;
    }

    .sidebar-menu a {
        text-decoration: none;
        color: #000;
        font-size: 18px;
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1040;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .whatsapp-btn {
        padding: 13px 10px;
        font-size: 24px;
        line-height: 1;
    }

    .whatsapp-btn i {
        margin: 0;
    }

}


.modal-title {
    font-family: sans-serif;
    font-weight: 500;
    display: flex;
    gap: 10px;
}

#orderModal label {
    font-size: 12px;
    color: #000;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

#orderModal input {
    font-weight: 600;
    background-color: rgba(169, 181, 211, 0.09);
}

#orderModal input::placeholder {
    color: rgba(var(--color-foreground), .5);
}

#orderModal input:focus {
    box-shadow: none;
    outline: none;
}

#orderModal .order-btn {
    padding: 10px;
}