/* General Styles */
* {
    font-family: "Josefin Sans", sans-serif;
}

.fa,
.fas,
.far,
.fal,
.fab,
.fad,
.fa-solid,
.fa-regular,
.fa-light,
.fa-brands,
.fa-duotone {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-weight: 900;
}

body {
    line-height: 28.8px;
    font-weight: 600;
    font-style: normal;
    color: #444;
    font-size: 16px;
    opacity: 1;
    visibility: visible;
    font-family: "Josefin Sans", sans-serif;
}

body h3 {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-style: normal;
    color: #666;
    font-size: 24px;
}

body h4 {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-style: normal;
    color: #444444;
    font-size: 18px;
}

::selection {
    background-color: #572600;
    color: #fff;
}

::-moz-selection {
    background-color: #572600;
    color: #fff;
}

::-webkit-selection {
    background-color: #572600;
    color: #fff;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
    background-color: #212529;
}

.social-links a {
    text-decoration: none;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background: white;
    transition: all 0.3s ease;
    font-size: 14px !important;

}

.navbar-logo-img {
    width: 250px;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Add this class to handle navbar when scrolled */
.navbar.scrolled {
    top: 40px;
    /* Maintain position below top-bar */
}


/* Welcome Section */
.welcome-section {
    background-color: #fff;
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    color: #333;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e5d3b3 !important;
    border-radius: 5px;
}

.welcome-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0;
}

.btn-book {
    background-color: #3e2723;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.btn-book:hover {
    background-color: #2d1b16;
    color: #fff;
}

.nav-link {
    color: #333 !important;
    font-family: 'Roboto Slab' !important;
    font-weight: 400;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link.active {
    color: #000 !important;
}

/* Dropdown Menus */
.dropdown-menu {
    display: none;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Add these new styles */
.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #f5f5dc;
}

.services-menu {
    width: 310px;
    height: 500px;
    overflow-y: auto;
}

.services-menu-container {
    min-width: 200px;
}

.dropdown-item {
    padding: 0px 20px !important;
    color: #666;
    transition: all 0.3s ease;
    font-size: 13px;
}

.dropdown-item-style {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu-booknow {
    background-color: #f5f5dc;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.dropdown-item-booknow {
    color: #666;
    padding: 0px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
    padding-left: 25px;
}

/* Cart Icon */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner Slider */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Add specific styles for testimonial carousel items */
#testimonialCarousel .carousel-item {
    height: auto;
    object-fit: cover;
}

.package-info {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e5d3b3;
    padding: 30px;
    width: 60%;
    border-radius: 5px;
}

.package-info h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
}

.old-price {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.package-description {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-brown {
    background-color: #3e2723;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-brown:hover {
    background-color: #2d1b16;
    color: #fff;
    text-decoration: none;
}

/* Make it responsive */
@media (max-width: 992px) {
    .packages-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .package-item {
        max-width: 100%;
    }

    .package-info {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .package-item {
        flex-direction: column;
    }

    .package-image {
        width: 100%;
    }

    .package-info {
        position: relative;
        width: 100%;
        transform: none;
        top: -30px;
        margin: 0 15px;
    }
}


/* Welcome Facilities Section */
.welcome-facilities {
    padding: 80px 0;
    background: url('../images/bg-ser.jpg') no-repeat right center;
    background-size: inherit;
    background-position: left;

    position: relative;
    background-color: #f9f9f9;
}

.welcome-facilities h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.welcome-facilities .subtitle {
    color: #666;
    margin-bottom: 30px;
}

.facilities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.facilities-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #444;
}

.facilities-list li::before {
    content: "○";
    position: absolute;
    left: 0;
    color: #3e2723;
}

.btn-dark {
    background-color: #212529;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 992px) {
    .welcome-facilities {
        background-position: center right -200px;
    }
}

@media (max-width: 768px) {
    .welcome-facilities {
        background: #f9f9f9;
        padding: 40px 0;
    }

    .welcome-facilities::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 300px;
        background: url('../images/spa-woman.jpg') no-repeat center;
        background-size: contain;
        opacity: 0.2;
        z-index: 0;
    }

    .welcome-facilities .container {
        position: relative;
        z-index: 1;
    }
}


/* Comfort & Preparations Section */
.comfort-prep-section {
    background: url('../images/bg-ser1-1.jpg') no-repeat center;
    background-size: cover;
    padding: 60px 0;
}

.comfort-section,
.prep-section {
    padding: 20px;
}

.comfort-section h3,
.prep-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.comfort-item,
.prep-item {
    margin-bottom: 25px;
}

.comfort-item h4,
.prep-item h4 {
    font-size: 18px;
    color: #3e2723;
    margin-bottom: 10px;
    font-weight: 600;
}

.comfort-item p,
.prep-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {

    .comfort-section,
    .prep-section {
        padding: 15px;
    }

    .comfort-item,
    .prep-item {
        margin-bottom: 20px;
    }
}


/* Pricing Cards Section */
.pricing-cards {
    background-color: #fff;
    padding: 60px 0;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.home-card-title {
    font-weight: 600;
    letter-spacing: 1px;
}

.price-title {
    color: #8d5c2c;
    font-weight: 600;
}

.card-header {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 10px 15px;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.card-footer {
    padding: 20px;
    text-align: center;
}

.btn-buy {
    display: inline-block;
    text-align: center;
    padding: 8px 25px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.pricing-card:hover .btn-buy {
    background: #3e2723;
    color: #fff;
    border-color: #3e2723;
}

.btn-buy.brown {
    background: #3e2723;
    color: #fff;
    border-color: #3e2723;
}

.price-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-circle .amount {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.price-circle .label {
    font-size: 14px;
    color: #666;
    text-transform: capitalize;
}

/* Responsive styles */
@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        width: 100%;
    }
}


/* Testimonial Slider Section */
.testimonial-slider {
    background-color: #f9f9f9;
    padding: 0;
    height: 300px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.testimonial-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    max-height: 150px;
    overflow: hidden;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider .carousel-control-prev.testimonial-control {
    left: 0;
}

.testimonial-slider .carousel-control-next.testimonial-control {
    right: 0;
}

.testimonial-slider .fa {
    font-size: 1.3rem;
}

.carousel-control-prev {
    left: 24px;
    right: auto;
}

.carousel-control-next {
    right: 24px;
    left: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content h3 {
        font-size: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }
}

/* Reservation Section */
.reservation-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.reservation-section .section-title {
    color: #666;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.opening-hours {
    margin-top: 50px;
}

.hours-text {
    color: #666;
    font-size: 16px;
}

.hours-label {
    font-weight: 600;
    margin-right: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .reservation-section .section-title {
        font-size: 24px;
    }

    .reservation-text,
    .hours-text {
        font-size: 14px;
    }
}


/* Footer Section */
.footer-section {
    background-color: #222;
    padding: 60px 0 30px;
    color: #fff;
}

/* Contact Page Styles */
.raw-html-block {
    border: 1px solid #222;
    padding: 15px;
    min-height: 120px;
}

.raw-html-title {
    font-size: 18px;
}

.raw-html-subtitle {
    font-size: 16px;
}

.address-header {
    background: #ededed;
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 20px;
}

.address-container {
    margin-bottom: 30px;
}

.spa-name {
    font-weight: 600;
    letter-spacing: 1px;
}

.address-text {
    font-size: 16px;
    color: #222;
}

.contact-form-title {
    font-size: 20px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.required-asterisk {
    color: #b00;
}

.submit-button {
    border: 1px solid #ccc;
    background: #f5f5f5;
    color: #222;
    font-size: 18px;
    min-width: 100px;
}

/* Cart Page Styles */
.cart-banner {
    background: #f7e3c3;
}

.cart-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.cart-breadcrumb-current {
    color: #222;
    font-weight: 600;
}

.cart-empty-container {
    margin-top: 30px;
    margin-left: 10px;
}

.cart-empty-message {
    font-size: 16px;
    color: #222;
    margin-bottom: 25px;
}

.return-to-shop-btn {
    background: #633813;
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

/* Add vertical border after address column */
.footer-section .col-md-4:nth-child(2) {
    position: relative;
}

.footer-section .col-md-4:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Newsletter section in footer */
.newsletter-form .form-control {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

.btn-submit {
    background-color: #3e2723;
    border: none;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #2d1b16;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: flex-start;
}

.social-icons a {
    color: #666;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 12px;
    color: #666;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #222;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid #ddd;
}

.go-to-top.active {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background-color: #3e2723;
    color: #fff;
}

/* Cart Dropdown Styles */
.cart-dropdown-menu {
    display: none;
    position: absolute;
    right: 25px;
    top: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 400px;
    padding: 20px;
    transition: opacity 0.2s;
    border-radius: 8px;
    min-width: 320px;
}

.cart-dropdown-menu-style {
    display: none;
    position: absolute;
    right: 25px;
    top: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 400px;
    padding: 20px;
}

.cart-icon {
    position: relative;
}

.cart-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-dropdown-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-empty-message {
    font-size: 14px;
    color: #888;
}

.cart-dropdown-empty {
    font-size: 14px;
    color: #888;
}

.cart-headers {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin: 15px 0;
}

.cart-headers-style {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin: 15px 0;
}

.cart-header-action {
    flex: 0.8;
}

.cart-header-thumb {
    flex: 1;
}

.cart-header-thumbnail {
    flex: 1;
}

.cart-header-product {
    flex: 1.2;
}

.cart-header-qtyprice {
    flex: 1.5;
}

.cart-header-quantity {
    flex: 1.5;
}

.cart-view-button {
    margin: 15px 0;
}

.cart-dropdown-btn {
    margin: 15px 0;
}

.cart-total {
    margin-top: 10px;
    text-align: right;
}

.cart-dropdown-total {
    margin-top: 10px;
    text-align: right;
}

.custom-pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #bcbcbc;
    background: #fff;
    color: #633813;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.custom-pagination li a.active,
.custom-pagination li:nth-child(2) a {
    background: #f7f7f7;
    color: #222;
    /* box-shadow: 0 0 0 2px #633813 inset; */
}

.custom-pagination li a:hover {
    background: #572600;
    border-color: #572600;
    color: #FFF;
}

.custom-pagination li a.active {
    border: none;
    background-color: transparent;
}

.custom-pagination li a.active {
    background-color: inherit;
    color: inherit;
}

.h4-heading {
    letter-spacing: 1.6px;
    font-weight: 400;
    font-style: normal;
    color: #666;
    font-size: 18px;
}

.bg-massage {
    background-image: url('../images/img-service-img01-1.jpg');
    background-size: cover;
}

.price-overlay.price-always {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #444;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .price-overlay.price-always {
    opacity: 0.8;
}

.price-overlay.price-always .price {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-overlay.price-always .only-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: normal;
}

.pricing-card .card-image {
    position: relative;
    width: 100%;
}

.pricing-card .card-image img {
    display: block;
    width: 100%;
    border-radius: 0;
}

#home-link {
    margin-left: 10px;
    background-color: #222;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 50%;
}

/* Booking Page Styles */
.booking-container {
    max-width: 1400px;
    border: 1px solid #555;
    padding: 10px 10px 30px 10px;
    background: #fff;
}

.booking-heading {
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.booking-heading-with-margin {
    color: #666;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 10px;
}

.booking-text {
    color: #444;
}

/* Gift Card Page Styles */
.gift-card-banner {
    background: #f7e3c3;
    padding: 30px 0 10px 0;
}

.gift-card-title {
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.gift-card-breadcrumb {
    font-size: 14px;
    color: white;
}

.newsletter-signup-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 10px;
}

.submit-btn-brown {
    background: #633813;
    color: #fff;
    width: 100%;
    font-weight: 600;
}

.magnifier-container {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.gift-card-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.magnifier-lens {
    display: none;
    position: absolute;
    border: 2px solid #b08a4f;
    width: 120px;
    height: 120px;
    cursor: crosshair;
    border-radius: 0;
}

.magnifier-result {
    display: none;
    position: absolute;
    left: 105%;
    top: 0;
    width: 320px;
    height: 240px;
    border: 2px solid #b08a4f;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

.gift-card-form-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
}

.gift-card-price {
    font-size: 2rem;
    color: #633813;
    margin-bottom: 15px;
}

.form-label-dark {
    color: #444;
}

.optional-fields-note {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.price-display {
    font-size: 18px;
    color: #444;
}

.price-amount {
    color: #633813;
    font-weight: 700;
}

.redemption-note {
    font-size: 17px;
    color: #444;
}

.add-to-cart-btn {
    background: #444;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 8px 30px;
}

/* Glycolic Peel Page Styles */
.glycolic-banner {
    background: #f7e3c3;
}

.glycolic-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.glycolic-breadcrumb-current {
    color: #222;
    font-weight: 600;
}

.results-count {
    font-size: 16px;
    color: #444;
}

.sort-select {
    border-radius: 0;
}

.newsletter-label {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: initial;
    font-weight: 400;
    margin-bottom: 5px;
}

.newsletter-input {
    border-radius: 0;
}

.newsletter-submit {
    background: #633813;
    color: #fff;
    font-family: 'Josefin Sans';
    font-weight: 600;
    border-radius: 0;
}

.no-products-alert {
    background: #faf9f9;
    border-top: 4px solid #633813;
    padding: 24px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.alert-icon-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
}

.alert-message {
    font-size: 1.15rem;
    color: #444;
    font-family: 'Josefin Sans';
}

/* Banner styling */
.banner-container {
    background: #f7e3c3;
}

/* Heading styling */
/* Breadcrumb styling */
.breadcrumb-current {
    color: #222;
    font-weight: 600;
}

/* Newsletter styling */
.newsletter-label {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.newsletter-input {
    border-radius: 0;
}

.newsletter-button {
    background: #633813;
    color: #fff;
    font-family: 'Josefin Sans';
    font-weight: 600;
    border-radius: 0;
}

/* Magnifier styling */
.magnifier-container {
    position: relative;
    width: 100%;
    max-height: 360px;
}

.magnifier-lens {
    display: none;
    position: absolute;
    border: 2px solid #b08a4f;
    width: 120px;
    height: 120px;
    cursor: crosshair;
    border-radius: 0;
}

.magnifier-result {
    display: none;
    position: absolute;
    left: 105%;
    top: 0;
    width: 320px;
    height: 240px;
    border: 2px solid #b08a4f;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

/* Product info styling */
.product-title {
    font-family: 'Josefin Sans';
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-price {
    font-size: 2rem;
    color: #633813;
    font-weight: 400 !important;
    margin-bottom: 18px;
}

.form-label {
    font-weight: 400;
}

.form-select {
    border-radius: 0;
}

.quantity-input {
    width: 70px;
    border-radius: 0;
}

.add-to-cart-button {
    background: #cbb6c7;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.sku-info {
    font-size: 14px;
    color: #444;
    border-bottom: 2px solid #633813;
}

/* You may like section */
.you-may-like {
    margin-top: 1rem;
}

.you-may-like img {
    width: 100px;
    height: 90px;
}

/* Gallery heading styling */
.gallery-heading {
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

/* Image styling */
.gallery-image {
    width: 100%;
    height: 280px;
}

/* Banner styling */
.banner-container {
    background: #f7e3c3;
}

/* Heading styling */
.heading-white {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* Breadcrumb styling */
.breadcrumb-current {
    color: #222;
    font-weight: 600;
}

/* Newsletter styling */
.newsletter-label {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.newsletter-input {
    border-radius: 0;
}

.newsletter-button {
    background: #633813;
    color: #fff;
    font-family: 'Josefin Sans';
    font-weight: 600;
    border-radius: 0;
}

/* Product info styling */
.product-title {
    font-family: 'Josefin Sans';
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-price {
    font-size: 2rem;
    color: #633813;
    font-weight: 700;
    margin-bottom: 18px;
}

.form-label {
    font-weight: 400;
}

.form-select {
    border-radius: 0;
}

.quantity-input {
    width: 70px;
    border-radius: 0;
}

.add-to-cart-button {
    background: #cbb6c7;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.sku-info {
    font-size: 14px;
    color: #444;
}

/* Shop Blog Styles */
.blog-heading {
    color: #777;
    font-size: 2.8rem;
    font-weight: 500;
}

.blog-subtext {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
}

.search-form {
    position: relative;
}

.search-input {
    border: 1px solid #bbb;
    border-radius: 0;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 5px;
    background: none;
    border: none;
    color: #444;
}

.sidebar-button {
    background: #ededed;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
}

.archive-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.archive-item {
    margin-bottom: 6px;
}

.archive-link {
    color: #444;
    text-decoration: none;
}

/* Shop Blog View Styles */
.blog-view-heading {
    font-family: 'Josefin Sans';
    color: #777;
    font-size: 2.8rem;
    font-weight: 500;
}

.blog-view-subtext {
    font-size: 18px;
    color: #444;
    margin-top: 10px;
    margin-bottom: 18px;
}

.blog-view-meta {
    font-size: 17px;
    color: #444;
    margin-bottom: 10px;
}

.blog-view-meta a {
    color: #8dc26f;
    text-decoration: none;
}

.search-form {
    position: relative;
}

.search-input {
    border: 1px solid #bbb;
    border-radius: 0;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 5px;
    background: none;
    border: none;
    color: #444;
}

.sidebar-button {
    background: #ededed;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
}

.archive-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.archive-item {
    margin-bottom: 6px;
}

.archive-link {
    color: #444;
    text-decoration: none;
}

/* Services Page Styles */
.services-quote-main {
    font-size: 1.25rem;
    color: #222;
    font-style: italic;
    margin-bottom: 10px;
}

.services-quote-author {
    font-size: 1.1rem;
    color: #b23b2e;
    font-style: italic;
}

.services-bg-massage {
    position: relative;
    background: url('images/service-bg.jpg') center center/cover no-repeat;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.services-title {
    color: white;
}

.services-title-underline {
    width: 60px;
    height: 2px;
    background: #6d5c3d;
    margin: 10px auto 0 auto;
}

.services-list-box {
    background: #faf9e5;
    border-radius: 2px;
    padding: 30px 30px 30px 30px;
    max-width: 700px;
    font-size: 1.15rem;
    color: #222;
}

/* Product With Video Page Custom Styles */
.pwv-banner-bg {
    background: #f7e3c3;
}

.pwv-heading {
    letter-spacing: 2px;
}

.pwv-breadcrumb-current {
    color: #222;
}

.pwv-newsletter-label {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: initial;
    font-weight: 400;
    margin-bottom: 5px;
}

.pwv-input-radius {
    border-radius: 0;
}

.pwv-submit-btn {
    background: #633813;
    color: #fff;
    font-family: 'Josefin Sans';
    font-weight: 600;
    border-radius: 0;
}

.pwv-magnifier-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.pwv-product-img {
    border-radius: 4px;
    display: block;
}

.pwv-magnifier-lens {
    display: none;
    position: absolute;
    border: 2px solid #b08a4f;
    width: 120px;
    height: 120px;
    cursor: crosshair;
    border-radius: 0;
}

.pwv-magnifier-result {
    display: none;
    position: absolute;
    left: 105%;
    top: 0;
    width: 320px;
    height: 240px;
    border: 2px solid #b08a4f;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

.pwv-title {
    letter-spacing: 1.6px;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 10px;
}

.pwv-price {
    font-size: 2.2rem;
    color: #633813;
    font-weight: 700;
    margin-bottom: 20px;
}

.pwv-label {
    font-family: 'Josefin Sans';
}

.pwv-gap {
    gap: 10px;
}

.pwv-addcart-btn {
    background: #cbb6c7;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.pwv-desc {
    font-family: 'Josefin Sans';
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.pwv-section-title {
    margin-bottom: 15px;
}

.pwv-section-desc {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.pwv-section-desc-short {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .pwv-magnifier-result {
        display: none !important;
    }
}

/* Promotions Page Styles */
.promotions-banner-bg {
    background: #f7e3c3;
}

.promotions-banner-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.promotions-banner-breadcrumb a,
.promotions-banner-breadcrumb {
    color: #fff;
    text-decoration: none;
}

.promotions-banner-breadcrumb .current {
    color: #222;
    font-weight: 600;
}

.promotions-newsletter-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 10px;
}

.promotions-newsletter-btn {
    background: #633813;
    color: #fff;
    width: 100%;
    font-weight: 600;
}

.promotions-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.promotions-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promotions-card-body {
    padding: 20px;
}

.promotions-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.promotions-card-prices {
    margin: 10px 0;
}

.promotions-card-oldprice {
    text-decoration: line-through;
    color: #aaa;
    font-size: 16px;
}

.promotions-card-newprice {
    color: #633813;
    font-size: 20px;
    font-weight: 700;
    margin-left: 10px;
}

.promotions-card-btn {
    background: #222;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 20px;
}

.promotions-card-search {
    margin-left: 10px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
}

/* Modal Styles */
.promotions-modal-content {
    border-radius: 12px;
}

.promotions-modal-img {
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (min-width: 768px) {
    .promotions-modal-img {
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
    }
}

.promotions-modal-input {
    width: 48px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.promotions-modal-addcart {
    background: #9b6ca3;
    color: #fff;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 6px;
}

.promotions-modal-label,
.promotions-modal-detail,
.promotions-modal-sku {
    color: #888;
    font-size: 13px;
    margin-bottom: 18px;
}

.promotions-modal-price-label {
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
}

.promotions-modal-detail-title {
    margin-bottom: 8px;
    color: #444;
    font-size: 15px;
}

/* Massage Page Styles */
.massage-banner-bg {
    background: #f7e3c3;
}

.massage-banner-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.massage-breadcrumb-current {
    color: #222;
    font-weight: 600;
}

.massage-results-info {
    font-size: 16px;
    color: #444;
}

.massage-sort-select {
    border-radius: 0;
}

.massage-newsletter-label {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: initial;
    font-weight: 400;
    margin-bottom: 5px;
}

.massage-newsletter-input {
    border-radius: 0;
}

.massage-newsletter-btn {
    background: #633813;
    color: #fff;
    font-family: 'Josefin Sans';
    font-weight: 600;
    border-radius: 0;
}

.massage-card-img {
    height: 180px;
    object-fit: cover;
}

.massage-card-title {
    font-family: 'Josefin Sans';
    font-size: 1.1rem;
    font-weight: 600;
}

.massage-card-price {
    color: #572600;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
}

.massage-card-btn {
    background: #222;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 24px;
}

.massage-card-btn:hover,
.massage-card-btn-round:hover {
    background-color: #572600;
    color: white;
}

.massage-card-btn-round {
    background: #222;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 37px;
}

.card-title-text {
    font-size: 14px;
    line-height: 38px;
    color: #666666;
    font-family: Roboto Slab;
    font-weight: bold;
    text-transform: uppercase;
}

.cart-popup {
    display: none;
    position: absolute;
    right: 25px;
    top: 100%;
    z-index: 1000;
    background: #ffffffd6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 400px;
    padding: 20px;
}