:root{
    --primary-color: #524072;
    --secondary-color: #8267B0;
    --fancy: "Great Vibes", serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    color: #3e2d33;
}

/* Header Styling */
        .header-top {
            background-color: #ffffff;
            padding: 1rem 0;
            color: var(--primary-color);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo-image {
            width: 100%;
            height: auto;
            margin-right: 10px;
            max-width: 250px;
        }
        .contact-info {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 500;
        }
        .contact-info a{
            text-decoration: none;
            color: inherit;
        }
        .visit-btn-custom {
            background-color: var(--primary-color);
            color: #ffffff;
            border-radius: 25px;
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }
        .visit-btn-custom:hover {
            background-color: #9A1A1C;
            transform: translateY(-2px);
        }
        /* Cart Icon */
.cart-icon {
    color: #3e2d33;
    font-size: 1.2rem;
    text-decoration: none;
    margin-right: 15px;
    position: relative;
}

.badge-notification {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
}

/* Cart Wrapper and Dropdown */
.cart-wrapper {
    position: relative;
}

/* Desktop/Tablet View (Default) */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.cart-wrapper:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 10px;
}

.cart-item {
    padding: 5px 0;
}
.cart-item:last-child{
    border-bottom: none;
}
.cart-item-image {
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.cart-item-details {
    font-size: 0.9rem;
}

.cart-item-name {
    color: #3e2d33;
    font-weight: bold;
}

.cart-item-price {
    color: var(--primary-color);
}

.cart-dropdown-actions {
    text-align: center;
    margin-top: 15px;
}

.cart-dropdown-actions .btn {
    font-size: 0.8rem;
    font-weight: bold;
}
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cart-panel-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-panel-body .cart-item-price{
    font-size: 14px;
}

.cart-panel-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
}

.overlay.show {
    display: block;
}
.cart-success{
    text-align: center;
}
.cart-success img{
    border-radius: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}


        
        /* Navbar Styling */
        .navbar {
            background-color: var(--primary-color);
        }
        .navbar-nav .nav-link {
            color: #ffffff;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0 0.5rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            background-color: #9A1A1C;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Social Media Icons */
        .social-icons i {
            color: #ffffff;
            font-size: 1.2rem;
            margin-left: 10px;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons i:hover {
            color: #ffc107;
            transform: scale(1.1);
        }

        /* Login Button */
        .btn-login {
            background-color: #ffffff;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            padding: 0.4rem 1rem;
            font-weight: 600;
            transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
        }
        .btn-login:hover {
            background-color: #ffffff;
            border: 2px solid var(--primary-color);
            color: #9A1A1C;
            transform: translateY(-2px);
        }
        
.hero-section-v1 {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('/assets/images/herobg.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: #ffffff;
}

.hero-text-box-v1 {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: slideInFromLeft 1s ease-out;
}

.hero-subtitle-v1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    animation: fadeIn 1.2s ease-out;
    font-weight: 600;
    text-align: center;
    font-family: var(--fancy);
}

.hero-title-v1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeIn 1.5s ease-out;
}

.hero-description-v1 {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeIn 1.8s ease-out;
}

.hero-button-v1 {
    padding: 12px 28px;
    font-size: 1rem;
    color: #ffffff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgb(215 193 255 / 60%);
    animation: buttonPulse 2s infinite;
}

.hero-button-v1:hover {
    background-color: #ffffff;
    color: var(--secondary-color);
    box-shadow: 0 8px 20px var(--secondary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgb(215 193 255 / 60%);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgb(215 193 255 / 60%);
    }
}
/* Reviews Section */
.reviews-section-v1 {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.reviews-title-v1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.review-item-v1 {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-item-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.review-image-v1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Our Experts Section */
.experts-section-v1 {
    background: linear-gradient(135deg, #f9f9f9 0%, #e7dbfc 100%);
    padding: 4rem 0;
}

.section-title-v1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description-v1 {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Experts Cards */
.experts-cards-v1 {
    justify-content: center;
    flex-wrap: wrap;
}

.expert-card-v1 {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
    height: 100%;
}

.expert-card-v1:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

.expert-image-v1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.expert-card-v1:hover .expert-image-v1 {
    transform: scale(1.1);
}

.expert-name-v1 {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.expert-title-v1 {
    font-size: 1rem;
    color: #777;
    font-style: italic;
}

/* Add subtle animations */
@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.expert-card-v1:nth-child(1) { animation-delay: 0.1s; }
.expert-card-v1:nth-child(2) { animation-delay: 0.2s; }
.expert-card-v1:nth-child(3) { animation-delay: 0.3s; }

.expert-card-v1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(114, 47, 55, 0.05);
    transition: background 0.3s ease;
    z-index: -1;
    border-radius: 15px;
}

.expert-card-v1:hover::before {
    background: rgba(114, 47, 55, 0.15);
}
.bg-primary-color{
    background: var(--primary-color); !important;
    border-color: var(--primary-color); !important;
}
.border-text-primary{
    border-color: var(--primary-color); !important;
    color: var(--primary-color); !important;
}
.border-text-primary:hover{
    background: var(--primary-color); !important;
    color: #ffffff !important;
}
/* Product Section */
.product-section {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
}

.product-header {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}

.product-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
    padding: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-info {
    text-align: left;
    margin-top: 15px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #b97377;
}

.current-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.reviews {
    margin: 10px 0;
}

.stars {
    color: gold;
}

.review-count {
    margin-left: 5px;
    color: #666;
}

.products-sold {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.add-to-cart-btn {
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Fixed Image Section Styling */
.fixed-image-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.fixed-image-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.fixed-image-card {
    width: 400px;
    height: 400px;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
}

.fixed-image-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Treatment Section */
.treatment-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.treatment-header {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}

.treatment-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 550px;
}

.treatment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(114, 47, 55, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.treatment-content {
    text-align: center;
}

.treatment-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    color: #3e2d33;
}

.treatment-description {
    font-size: 0.9rem;
    margin: 5px 0 15px;
    color: #666;
}

.treatment-button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.treatment-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Unique Top Selling Products */
.unique-top-selling-products {
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.unique-products-header {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.unique-products-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.unique-product-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.unique-product-card:hover {
    transform: translateY(-5px);
}

.unique-product-image {
    width: 250px;
    height: auto;
    border-radius: 8px;
}

.unique-product-content {
    text-align: left;
}

.unique-product-rating {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.unique-product-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 5px;
}

.unique-product-price {
    font-size: 1rem;
    color: var(--primary-color);
}

.unique-old-price {
    text-decoration: line-through;
    color: #6a5a5d;
    margin-right: 5px;
}

.unique-add-to-cart-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.unique-add-to-cart-button:hover {
    background-color: var(--secondary-color);
}

/* New Section Styling */
.new-services-section {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    color: #3e2d33;
}

.new-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/allser.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.new-content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.new-breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #b97377;
}

.new-tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.new-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: #3e2d33;
}

.new-description {
    font-size: 1rem;
    color: #3e2d33;
    margin-top: 1rem;
}

/* serdet-treatment-section */
.serdet-treatment-section {
    padding: 50px 0;
}

.serdet-treatment-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.serdet-content-area p {
    font-size: 1rem;
    color: #3e2d33;
    line-height: 1.6;
}

.serdet-video-wrapper {
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.serdet-treatment-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.serdet-treatment-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #3e2d33;
}

.serdet-form-area {
    text-align: center;
    margin-top: 20px;
}

.serdet-info-box {
    background-color: #e7dbfc;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.serdet-info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sub-treatment {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    height: 100%;
}

.sub-treatment:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: #fff !important;
}

.sub-treatment img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 50px;
}
.sub-treatment h3{
    font-size: 1.5rem;
    height: 80px;
}
.sub-treatment p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-treatment span {
    font-size: 1rem;
    color: #777;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

.form-control {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

.serdet-btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease;
}

.serdet-btn-primary:hover {
    background-color: var(--secondary-color);
}

.serdet-details-box {
    padding: 5px;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

.serdet-details-box p {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
}

.serdet-details-box p i{
    margin-right: 5px;
    background: #fff;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* serdet-before-after-gallery */
.serdet-before-after-gallery {
    padding: 2rem 0;
    text-align: center;
}

.serdet-gallery-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.serdet-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.serdet-gallery-item {
    width: 20%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
}

.serdet-gallery-item img {
    width: 200px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.serdet-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* serdet-product-filters */
.serdet-product-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #3e2d33;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.serdet-product-count {
    margin: 0;
    color: var(--primary-color);
}

.serdet-filter-options {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.serdet-display-options label,
.serdet-sort-options label {
    margin-right: 0.5rem;
    color: #3e2d33;
    font-weight: bold;
}

.serdet-display-options select,
.serdet-sort-options select {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.serdet-view-options span {
    font-weight: bold;
    color: #3e2d33;
}

.serdet-view-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: 0.3rem;
    transition: color 0.3s ease;
}

.serdet-view-icon.active,
.serdet-view-icon:hover {
    color: var(--secondary-color);
}

/* Shop Fullwidth Container */
.shop-fullwidth-container {
    display: flex;
    max-width: 100%;
    padding: 20px;
    background-color: #ffffff;
    gap: 40px;
    box-sizing: border-box;
}

/* Sidebar styling */
.shop-sidebar {
    width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.shop-sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.shop-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-category-list li {
    margin-bottom: 10px;
}

.shop-category-list a {
    color: #3e2d33;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.shop-category-list a:hover {
    color: var(--primary-color);
}

/* Product section styling */
.shop-products-container {
    flex: 1;
    padding: 20px;
}

.shop-products-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 20px;
}

/* Product card styling */
.shop-product-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Discount badge */
.shop-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Product image */
.shop-product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Product details */
.shop-product-details {
    text-align: center;
}

.shop-product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    height: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.shop-product-title a{
    color: #3e2d33;
    text-decoration: none;
}
.shop-product-rating {
    color: #ffb400;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.shop-product-rating span {
    color: #666;
}

.shop-product-price {
    font-size: 1rem;
    margin-bottom: 10px;
}

.shop-old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.shop-new-price {
    color: var(--primary-color);
    font-weight: bold;
}

.shop-product-orders {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Add to cart button */
.shop-add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.shop-add-to-cart:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Pagination */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-number,
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    background-color: #f1f1f1;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-number:hover,
.pagination-arrow:hover {
    background-color: #e0e0e0;
}

.pagination-arrow {
    color: var(--primary-color);
}

.pagination-number.active {
    background-color: var(--primary-color);
    color: #ffffff;
}

.pagination-dots {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* pro-container and product details */
.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pro-breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.pro-breadcrumbs a{
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.pro-product-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pro-product-image-box {
    flex: 1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.pro-product-image {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.pro-product-image-box {
    text-align: center;
}
.main-image-container {
    position: relative;
    width: 320px;
    margin: 0 auto;
}
.pro-product-image {
    width: 100%;
    cursor: zoom-in;
}
.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.thumbnail-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.thumbnail-image:hover {
    border-color: #007bff;
}
.pro-product-info {
    text-align: left;
}

.pro-product-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 10px;
}

.pro-product-price-box {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pro-old-price {
    color: #9a9a9a;
    text-decoration: line-through;
    margin-right: 5px;
}

.pro-current-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 35px;
}

.pro-product-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 5px;
}

.pro-product-order {
    font-size: 0.9rem;
    color: #6a6a6a;
}

.pro-product-add-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.pro-quantity-input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.pro-add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pro-add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

.pro-product-video-box {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.pro-product-video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pro-product-description-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.pro-description-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 15px;
}

.pro-product-description {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pro-feature-title, .pro-specifications-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
}

.pro-feature-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #5a2a35;
}

.pro-feature-list li {
    font-size: 1rem;
    margin-bottom: 8px;
}

.pro-specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.pro-specifications-table td {
    padding: 10px;
    font-size: 1rem;
    color: #3e2d33;
    border-bottom: 1px solid #e0e0e0;
}

.pro-specifications-table td:first-child {
    font-weight: bold;
    color: var(--primary-color);
    width: 40%;
}

/* Related Products Section */
.relatedpro-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.relatedpro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.relatedpro-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.relatedpro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.relatedpro-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}

.relatedpro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.relatedpro-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.relatedpro-details {
    padding: 10px;
}

.relatedpro-product-title {
    font-size: 1rem;
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 8px;
}

.relatedpro-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.relatedpro-add-to-cart {
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.relatedpro-add-to-cart:hover {
    background-color: var(--secondary-color);
}

/* Blog Section */
.blog-section-v1 {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.blog-title-v1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase; /* Emphasize the title */
    letter-spacing: 1px; /* Spaced letters for elegance */
    position: relative; /* For underline effect */
}

.blog-title-v1::after {
    content: '';
    display: block;
    width: 50px; /* Length of the underline */
    height: 3px; /* Thickness of the underline */
    background: var(--primary-color); /* Underline color */
    margin: 10px auto; /* Centering the underline */
}

.blog-card-v1 {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-image-v1 {
    width: 100%;
    height: 220px; /* Consistent image height */
    object-fit: cover;
}

.blog-category-v1 {
    font-size: 0.9rem;
    color: #b97377;
    margin-top: 10px;
    text-transform: uppercase;
}

.blog-title-v1 {
    font-size: 1.25rem;
    color: #3e2d33;
    margin-bottom: 15px;
    font-weight: 600; /* Semi-bold title for emphasis */
}

.blog-link-v1 {
    display: inline-block; /* Make link a block for better button styling */
    padding: 10px 20px; /* Button padding */
    background-color: var(--primary-color); /* Button color */
    color: #ffffff; /* White text for contrast */
    border-radius: 25px; /* Rounded button */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.blog-link-v1:hover {
    background-color: var(--secondary-color); /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.faq-item {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e7dbfc;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: #e7dbfc;
    color: #3e2d33;
    padding: 15px;
    font-size: 0.9rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Us Section */
.contact-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-map {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Info and Form Section */
.contact-info-form-section {
    padding: 50px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-container {
    max-width: 1200px;
    width: 100%;
}

.contact-cards {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.contact-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    height: 100%;
}

.contact-card i{
        color: #fff;
    font-size: 50px;
    position: absolute;
    left: 0;
    bottom: 50%;
    background: var(--primary-color);
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 10px;
    opacity: 0.2;
    z-index: 1;
    border-bottom-right-radius: 10px;
    transform: translateY(50%);
    
}
.contact-card p{
    z-index: 2;
}
.contact-card-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form-description {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #e7dbfc;
    padding-top: 20px;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.send-message-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-message-btn:hover {
    background-color: var(--secondary-color);
}

.contact-description h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.contact-description p {
    color: #3e2d33;
    font-size: 1rem;
    line-height: 1.6;
}

/* Cart Page */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cart-container h2{
    color: var(--primary-color);
    font-size: 2rem;
}

.cart-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-weight: bold;
}

.cart-tabs span {
    padding: 10px;
    color: var(--primary-color);
}

.active-tab {
    border-bottom: 3px solid var(--primary-color);
}

.cart-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-items, .cart-summary {
    background: #e7dbfc;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cart-heading{
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.cart-items {
    flex: 2;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.cart-item-image {
    width: 100px;
    border-radius: 5px;
    margin-right: 20px;
}

.cart-item-details {
    flex: 1;
    text-align: left;
}

.cart-item-price, .cart-item-description {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.decrease-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.increase-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.quantity-input {
    width: 40px;
    text-align: center;
    font-size: 18px;
    border: none;
    outline: none;
}

.delete-btn {
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cart-coupon input {
    width: 70%;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-right: 5px;
}

.apply-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
/* Hide the spin buttons in WebKit browsers */
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* Hide spin buttons in Firefox */
        input[type="number"] {
            -moz-appearance: textfield;
        }
.cart-totals p {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 20px 0;
}

.checkout-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
    color: #fff;
}

.checkout-btn {
    background-color: var(--primary-color);
}
.checkout-btn a{
    text-decoration: none;
    color: #ffffff;
}
.paypal-btn {
    background-color: #ffdd00;
    color: #3e2d33;
}

.payment-methods {
    font-weight: bold;
    margin: 15px 0 5px;
    font-size: 1rem;
}

.payment-icons img {
    width: 40px;
    margin: 5px;
}

/* Checkout Page */
.checkout-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.checkout-summary {
    flex: 1;
    background-color: #e7dbfc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-summary h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.checkout-summary .product-image{
    width: 50px;
    height: auto;
}
.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.product-image {
    width: 250px;
    height: 250px;
    border-radius: 5px;
    margin-right: 15px;
}

.product-details h4 {
    font-size: 1rem;
    color: #3e2d33;
    margin-bottom: 5px;
}

.product-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.order-total {
    margin-top: 20px;
}

.order-total p, .order-total h3 {
    font-size: 1rem;
    margin: 5px 0;
    font-weight: bold;
    color: #3e2d33;
}

.order-total h3 {
    color: var(--primary-color);
    font-size: 30px;
}

.checkout-form {
    flex: 1.5;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-form h2, .checkout-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.checkout-form h3 {
    font-size: 1.2rem;
    color: #3e2d33;
}

.checkout-form form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.inline-inputs {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
        gap: 30px;
    }

    .checkout-summary, .checkout-form {
        width: 100%;
    }
}


/* Home Page */
   /* Product Section */
.product-section-v2 {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.product-section-title-v2 {
    font-size: 2rem;
    font-weight: bold;
    color: #3e2d33;
}

.product-shop-link-v2 {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-shop-link-v2:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Centered Product Row */
.product-row-v2 {
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Card */
.product-card-v2 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    position: relative;
    padding: 10px;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container-v2 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.product-image-v2 {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-v2:hover .product-image-v2 {
    transform: scale(1.05);
}

/* Discount Badge */
.discount-badge-v2 {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card-v2:hover .discount-badge-v2 {
    transform: scale(1.1);
}

/* Product Details */
.product-details-v2 {
    padding: 20px;
    text-align: center;
}

.product-title-v2 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-title-v2 a{
    color: #3e2d33;
    text-decoration: none;
}
.product-rating-sold-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-rating-v2 {
    color: var(--primary-color);
    margin: auto;
}

.product-sold-v2 {
    color: var(--secondary-color);
}

.product-old-price-v2 {
    color: #b0a8a8;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 5px;
}

.product-price-v2 {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.add-to-cart-button-v2 {
    background: linear-gradient(135deg, var(--primary-color);, #9b3b4b);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 10px rgba(114, 47, 55, 0.3);
    margin-top: 10px;
}

.add-to-cart-button-v2:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color););
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(114, 47, 55, 0.5);
}

/* Animations */
@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.product-card-v2:hover .discount-badge-v2 {
    animation: pulseBadge 1s infinite;
}


 /* Full-width Treatments Section */
.treatments-section-v1 {
    padding: 70px 0;
    background-color: #FDF1F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Row Customizations for Centered Layout */
.row-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    box-sizing: border-box;
}

/* Column Width Adjustments */
.image-column, .text-column {
    flex: 1 1 45%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

/* Common Text Styles */
.section-subtitle-v1,
.treatments-subtitle-v1 {
    font-size: 1.1rem; /* Adjusted font size */
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    white-space: normal;
}

.section-title-v1,
.treatments-title-v1 {
    font-size: 1.8rem; /* Adjusted for better fit */
    font-weight: bold;
    color: #3e2d33;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: normal; /* Allows wrapping within container */
}

/* Section Description */
.section-description-v1 {
    color: #5e5e5e;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button Styling */
.section-button-v1 {
    padding: 12px 30px;
    color: #ffffff;
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 15px rgba(114, 47, 55, 0.3);
    text-decoration: none;
}

.section-button-v1:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0px 8px 25px rgba(114, 47, 55, 0.5);
}

/* Image Styling */
.treatment-image-v1 {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.treatment-image-v1:hover {
    transform: scale(1.05);
}

/* Treatment List Styling */
.treatment-list-v1 {
    color: #3e2d33;
    font-size: 1.15rem;
    list-style-type: none;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
    margin-top: 15px;
}

.treatment-list-v1 li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.treatment-list-v1 li::before {
    content: "✔";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
 /* Popular Treatments Section */
.popular-treatments-section-v1 {
    background-color: var(--primary-color);
}
.popular-treatments-section-v1 .owl-carousel{
    margin-bottom: -150px;
    padding-top: 50px;
}

.section-title-v1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Carousel Styling */
.carousel-container-v1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%; /* Full width */
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container-v1 {
    overflow: hidden;
    width: 100%;
}

.carousel-track-v1 {
    display: flex;
    transition: transform 0.5s ease;
}

/* Treatment Card */
.treatment-card-v1 {
    flex: 0 0 23.5%; /* Each card takes up 25% of the track width (showing exactly 4 items at a time) */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin: 0 10px;
}

.treatment-card-v1 img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.treatment-card-v1:hover img {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Overlay Styling */
.treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    color: #ffffff;
    padding: 30px;
    text-align: center;
    opacity: 1;
    height: 100%;
    transition: 0.3s ease;
}
.treatment-card-v1 p{
    display: block;
    text-align: left;
}

/* Treatment Tag */
.pop-treatment-tag {
    font-size: 0.9rem;
    font-weight: bold;
    background: #FFC107;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Treatment Name */
.pop-treatment-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    align-self: start;
}

/* View Details Button */
.view-details-button {
    display: inline-block;
    font-size: 0.9rem;
    color: #ffffff;
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 50px;
}

.view-details-button:hover {
    background: var(--secondary-color);
}

/* Carousel Controls */
.carousel-control-v1 {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.carousel-control-v1:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Special Offer Section */
.special-offer-section-v1 {
    display: flex;
    align-items: center;
}

.special-offer-overlay-v1 {
    background-color: var(--primary-color);
    padding: 100px 70px;
    text-align: left;
}

.special-offer-title-v1 {
    font-size: 45px;
    font-weight: 600;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.special-offer-subtitle-v1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--fancy);
}

.special-offer-description-v1 {
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 50px;
    line-height: 1.6;
}

.special-offer-button-v1 {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.special-offer-button-v1:hover {
    background-color: var(--secondary-color);
}
.features{
    background-color: #fff;
    padding: 200px 0 0 0;
    margin-bottom: 50px;
}
.features .feature{
    text-align: center;
}

.features .feature img{
    margin-bottom: 30px;
    width: 80px;
    height: auto;
}
.features .feature h3{
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}
/* Gallery Section */
.gallery-section-v1 {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.gallery-title-v1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-description-v1 {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gallery-grid-v1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item-v1 {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item-v1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-v1:hover {
    transform: scale(1.05);
}

/* Newsletter Section */
.newsletter-section-v1 {
    background-color: #ffffff;
}

.newsletter-image-v1 {
    flex: 1; /* Allow image to grow and shrink */
}

.small-image-v1 {
    max-width: 600px;
    height: auto;
}

.newsletter-content-v1 {
    max-width: 500px; /* Limit content width */
    text-align: center;
}

.newsletter-title-v1 {
    font-size: 45px; /* Reduced font size for better fit */
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.newsletter-title-v1 strong{
    font-size: 60px;
    color: var(--primary-color);
}

.newsletter-subtitle-v1 {
    font-size: 1.8rem; /* Reduced subtitle size */
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--fancy);
    text-align: center;
    display: block;
}

.newsletter-description-v1 {
    font-size: 1.2rem; /* Smaller description font size */
    color: #666;
    margin-bottom: 30px;
}

.newsletter-disclaimer{
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}
.newsletter-disclaimer a{
    color: var(--primary-color);
    text-decoration: none;
}
.input-group {
    display: flex; /* Flexbox for input and button alignment */
}

.form-control-v1 {
    border: 2px solid var(--primary-color);
    border-radius: 5px 0 0 5px;
    padding: 12px;
    height: 50px;
    flex: 1; /* Allow input to take available space */
}

.btn-submit-v1 {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 0 5px 5px 0;
    height: 50px;
    padding: 0 20px;
    transition: background 0.3s ease;
    font-weight: bold;
    border: none;
}

.btn-submit-v1:hover {
    background-color: var(--secondary-color); /* Darker shade on hover */
}

/* Blog Section */
.blog-section-v1 {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.blog-title-v1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase; /* Emphasize the title */
    letter-spacing: 1px; /* Spaced letters for elegance */
    position: relative; /* For underline effect */
}

.blog-title-v1::after {
    content: '';
    display: block;
    width: 50px; /* Length of the underline */
    height: 3px; /* Thickness of the underline */
    background: var(--primary-color); /* Underline color */
    margin: 10px auto; /* Centering the underline */
}

.blog-card-v1 {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-image-v1 {
    width: 100%;
    height: 220px; /* Consistent image height */
    object-fit: cover;
}

.blog-category-v1 {
    font-size: 0.9rem;
    color: #b97377;
    margin-top: 10px;
    text-transform: uppercase;
}

.home-blog-title-v1 {
    font-size: 1.25rem;
    color: #3e2d33;
    margin-bottom: 15px;
    font-weight: 600; /* Semi-bold title for emphasis */
    padding: 15px;
}

.blog-link-v1 {
    display: inline-block; /* Make link a block for better button styling */
    padding: 10px 20px; /* Button padding */
    background-color: var(--primary-color); /* Button color */
    color: #ffffff; /* White text for contrast */
    border-radius: 25px; /* Rounded button */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    margin-bottom: 20px;
}

.blog-link-v1:hover {
    background-color: var(--secondary-color); /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
/* Toast Message Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-out;
}

.toast-content {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-width: 250px;
}

.toast-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: #fff;
    width: 100%;
    animation: progress 3s linear forwards;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

/*Home Page End*/

.service-hero-image{
    position: relative;
}
.service-hero-image .element{
    position: absolute;
    left: 30%;
    top: 10%;
    z-index: 1;
    rotate: -50deg;
}
.service-hero-image .hero{
    position: relative;
    z-index: 2;
    width: auto;
    max-height: 800px;
}
.hero-service:not(:last-child){
    margin-bottom: 100px;
}
.hero-service img{
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}
.hero-service h2{
    font-size: 25px;
}
.hero-service p{
    font-size: 16px;
}
.page-header-section h1{
    font-family: var(--fancy);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
}
.cta-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #fff; /* Ensure text is visible on the overlay */
    overflow: hidden; /* Prevent content overflow */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/misc/cta-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1; /* Place below the content */
    opacity: 0.7; /* Adjust transparency */
    background-color: rgba(0, 0, 0, 0.5); /* Overlay color */
}

.cta-content {
    position: relative;
    z-index: 2; /* Place above the overlay */
}

.cta-content span {
    font-family: var(--fancy);
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 30px;
    display: block;
}

.cta-content h2 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #333;
}

.cta-content p {
    font-size: 25px;
    color: var(--primary-color);
}

.cta-btn {
    margin: auto;
    text-align: center;
}

.cta-btn button {
    background: var(--primary-color);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.3s ease;
    padding: 15px;
    outline: none;
    border: none;
}

.cta-btn a {
    color: #fff;
    text-decoration: none;
}

.cta-btn button:hover {
    border-top-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0;
}
.treatment-content{
    text-align: left;
    background: #e7dbfc;
    padding: 20px;
    height: 100%;
    position: relative;
    border-radius: 20px;
}
.treatment-content .subhead{
    font-family: var(--fancy);
    color: var(--primary-color);
    font-size: 30px;
    display: block;
    font-weight: 500;
}
.herocon ul {
    list-style: none; /* Remove the default bullets */
    padding-left: 20px; /* Adjust padding for the custom bullet */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.herocon ul li {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 50%;
}

.herocon ul li::before {
    content: "›";
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 15px;
    display: flex;
    height: 15px;
    text-align: center;
    margin-right: 5px;
    justify-content: center;
    align-items: center;
}
.mobile-navigation{
    display: none;
}
/* Sticky CTA for mobile */
.mobile-sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ffe259, #ffa751);
  color: #000;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mobile-sticky-cta.show-cta {
  transform: translateY(0);
}
#header-search-icon{
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 10px;
    font-size: 17px;
    font-weight: bold;
}

.home-review-slider .card{
    border: none;
    text-align: center;
}
.home-review-slider .review-stars{
    box-shadow: none;
}
.home-review-slider .review-stars p{
    color: #444;
    font-size: 15px;
}
.home-review-slider .review-stars .bi-person{
    background: var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: auto;
}
.home-blog .blog-card-v1{
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
    text-align: start;
}
.home-blog .blog-card-v1 img{
    border-radius: 10px;
}
.home-blog .home-blog-title-v1{
    padding: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    height: 40px;
}
.home-blog span{
    font-size: 14px;
    font-weight: 500;
    color: #777;
}
.home-blog hr{
    border-top: 2px solid;
}
.home-blog a{
    font-size: 15px;
    color: #444;
    text-decoration: none;
    font-weight: bold;
}
/* Mobile View Adjustments */
@media (max-width: 576px) {
    body{
        position: relative;
    }
    h1{
        font-size: 1.8rem !important;
    }
    h2{
        font-size: 1.6rem !important;
    }
    h3{
        font-size: 1.1rem !important;
    }
    .md-none{
        display: none !important;
    }
    .service-hero-image .hero{
        height: 350px;
    }
    /* -------------------------------------- */
    /* Mobile Navigation Styles               */
    /* -------------------------------------- */
    .mobile-navigation {
        display: block;
        position: fixed;
        bottom: 10px;
        z-index: 100;
        padding: 20px 0 0 0;
        border-radius: 30px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 20px rgb(0,0,0,0.3);
        background-color: #fff; /* or #f7c7cc if you want matching color */
        transition: all 0.3s ease; /* Smooth transition for shape & position */
    }
    /* When anchored to footer: full width, no radius */
    .mobile-navigation.footer-anchored {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        margin-top: 1rem; /* some optional top spacing if needed */
    }
    .mobile-navigation a{
        text-decoration: none;
        color: var(--primary-color);
        font-size: 12px;
        font-weight: bold;
    }
    .mobile-navigation a i{
        font-size: 30px;
    }
    .serdet-gallery-item{
        width: 80%;
    }
    .cart-wrapper{
        display: none;
    }
    .cart-dropdown {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        width: 100%;
        height: 100vh;
        max-width: none; /* Remove max-width restriction */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        padding: 20px;
    }

    /* On mobile, we might want to trigger dropdown on click instead of hover. 
       For demonstration, let's keep hover for now. If needed, add JS to toggle a class on click. */
    .cart-wrapper:hover .cart-dropdown {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cart-dropdown-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .cart-item {
        margin-bottom: 15px;
    }

    .cart-dropdown-actions {
        margin-top: 20px;
    }
    .footer-address,
.footer-hours,
.footer-contact {
    padding-right: 0;
}
.footer-section .element{
    bottom: 120px;
    z-index: 0 !important;
}

.filter-width{
    width: 100% !important;
}
.shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.pro-product-row{
    flex-wrap: wrap;
}
.pro-product-image-box{
    flex: auto;
    width: 100%;
}
.cart-coupon input{
    width: 58%;
}
}
/* Absolute/floating filters on mobile */
.filters-floating {
  position: absolute;    /* float on top, not pushing content down */
  top: 60px;             /* adjust if you have a tall header */
  right: 1rem;
  background-color: #fff;
  z-index: 9999;
  width: 90%;
  max-width: 350px;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.filter-width{
    width: 30%;
}

/* On md+ screens, revert to inline */
@media (min-width: 768px) {
  .filters-floating {
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
    max-width: none;
    padding: 0;
  }
}

#decreaseQty{
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#pro-quantity{
    border: none;
    outline: none;
}
#increaseQty{
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
 .nav-link.btn {
    padding: 5px 20px;
    border-radius: 10px; /* Gives it a button-like appearance */
    transition: all 0.3s ease-in-out;
    background: transparent; /* Default background */
    color: #fff; /* Default text color */
}

.nav-link.btn.active-btn {
    background: #fff; /* Replace with your primary color */
    color: var(--primary-color); /* Ensure text is readable */
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border: none; /* Optional: remove border */
}

.nav-link.btn:hover {
    background: var(--primary-color-light); /* Lighter shade on hover */
    color: #fff;
}
