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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none;
}

.service-detail-card.bridal-card {
    margin-top: 60px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.benefits-section {
    padding: 100px 0px;
}

.header-utilities {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

/* ================= SEARCH ICON BUTTON ================= */
.search-icon-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s ease;
}

.search-icon-btn i {
    color: #000;
}

/* Hover Effect */
.search-icon-btn:hover {
    background: transparent;
}

.search-icon-btn:hover i {
    color: red;
}


/* ================= FULL SCREEN SEARCH POPUP ================= */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}


/* ================= SEARCH BOX ================= */
.search-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 420px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeZoom 0.3s ease;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 8px 10px;
}

.search-box button {
    border: none;
    background: red;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

/* Popup Animation */
@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.container {
    max-width: 1720px;
}

@media (max-width: 1760px) {
    .container {
        max-width: 95%;
    }
}



.site-header {
    background: #ffffff;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: none;
}


.hero-section {
    position: relative;
    min-height: 90vh;
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-section-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.tagline {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #9b6b77;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-section-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-section-content p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary-fay {
    background-color: #9b6b77;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #9b6b77;
    transition: all 0.3s ease;
}

.btn-primary-fay:hover {
    background-color: #f63434;
    border-color: #f63434;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 52, 52, 0.3);
}

.btn-outline-fay {
    background-color: transparent;
    color: #333;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #9b6b77;
    transition: all 0.3s ease;
}

.btn-outline-fay:hover {
    background-color: #f63434;
    border-color: #f63434;
    color: #ffffff;
    transform: translateY(-2px);
}

.header-container {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle img {
    height: 25px;
    width: 25px;
    object-fit: contain;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}




.left-nav {
    justify-self: start;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #c89860);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d4a574;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    padding-right: 18px;
    position: relative;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown:hover .dropdown-toggle::before {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}


.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #c89860);
    transition: width 0.3s ease;
}

.dropdown-item:hover {
    color: #d4a574;
    padding-left: 35px;
    background: rgba(212, 165, 116, 0.05);
}

.dropdown-item:hover::before {
    width: 20px;
}

.header-logo {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 225px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}

.header-utilities {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 25px;
}

.account-link {
    display: inline-block !important;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.account-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.account-link:hover::before {
    left: 100%;
}

.account-link:hover {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.05);
}

.cart-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-link:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #d4a574, #c89860);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cart-total {
    display: inline-block !important;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-container:hover .cart-total {
    color: #d4a574;
}

@media (max-width: 1200px) {
    .header-container {
        gap: 20px;
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .header-logo img {
        height: 70px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 10px;
    }

    .header-logo {
        flex-grow: 1;
        text-align: center;
    }

    .header-utilities {
        gap: 10px !important;
    }
}

@media (max-width: 767px) {

    .testimonial-slide {
        padding-top: 100px;
    }

    .nav-menu li {
        width: 100%;
    }

    .header-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .header-nav.left-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        z-index: 1001;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 80px 30px 40px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        display: block !important;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    .header-nav.left-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px !important;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 10px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 0px;
        display: none;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-toggle::before {
        transform: translateY(-50%) rotate(180deg);
        /* 180deg rotation of a down arrow (border-top) makes it point up */
    }

    .header-logo {
        width: 150px;
        height: 80px;
        order: 1;
        justify-content: flex-start;
    }

    .header-logo img {
        height: 100% !important;
        width: auto !important;
        max-height: 80px;
    }

    .header-utilities {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0px;
        gap: 20px;
        background: #f2f2f2;
        padding-top: 6px;
        border-radius: 10px;
    }

    .site-header {
        padding: 15px 0;
    }


}

@media (max-width: 576px) {
    .header-container {
        padding: 0 15px;
    }

    .header-logo {
        width: 150px;
        height: 80px;
    }

    .header-logo img {
        height: 100% !important;
        width: auto !important;
        max-height: 80px;
    }


}

/* Hero Section Responsiveness */
@media (max-width: 992px) {
    .hero-section-content h1 {
        font-size: 60px;
    }

    .hero-section-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 40px 15px;
    }

    .hero-section-content h1 {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-fay,
    .btn-outline-fay {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-us-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-images-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 0px;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.overlap-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 10px;
}

.overlap-image img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.about-content {
    padding-left: 15px;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.subtitle-wrapper .dot {
    width: 8px;
    height: 8px;
    background-color: #9D5F6D;
    border-radius: 50%;
    display: inline-block;
}

.subtitle-wrapper .subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #050505;
    letter-spacing: 0.5px;
    font-family: "Jost", sans-serif;
}

.section-title {
    font-size: 56px;
    color: #9D5F6D;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 25px;
    text-align: left;
}

.section-desc {
    font-size: 18px;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    opacity: 0.8;
}

.vision-philosophy-box {
    background-color: #FAF7F5;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
}

.info-item {
    padding: 10px;
}

.info-item .icon-box {
    margin-bottom: 25px;
}

.info-item .icon-box img {
    height: 45px;
    width: auto;
}

.info-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #050505;
    margin-bottom: 15px;
    font-family: "Jost", sans-serif;
}

.info-item p {
    font-size: 15px;
    color: #050505;
    line-height: 1.62;
    margin: 0;
    opacity: 0.7;
    font-family: "Jost", sans-serif;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.btn-learn-more {
    background-color: #9D5F6D;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: none;
    font-family: "Jost", sans-serif;
    white-space: nowrap;
}

.btn-learn-more:hover {
    background-color: #834f5b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 95, 109, 0.25);
}

.btn-learn-more img {
    width: 14px;
    filter: brightness(0) invert(1);
}

.contact-info {
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #9D5F6D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.phone-icon-circle:hover {
    transform: scale(1.05);
}

.phone-icon-circle img {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text .label {
    font-size: 15px;
    color: #555555;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    margin-bottom: 2px;
    line-height: 1.2;
}

.phone-text .number {
    font-size: 22px;
    color: #000000;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

/* Responsiveness for About Us */
@media (max-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .header-logo {
        height: auto;
    }
}

@media (max-width: 991px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-images-wrapper {
        margin-bottom: 80px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .subtitle-wrapper {
        justify-content: center;
    }

    .section-title,
    .section-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 38px;
    }

    .vision-philosophy-box {
        padding: 30px 20px;
    }

    .info-item {
        margin-bottom: 30px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .about-footer {
        flex-direction: column;
        gap: 20px;
    }

    .btn-learn-more {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Rituals Section
   ========================================================================== */

.rituals-section {
    padding: 120px 0;
    background: url('../images/ritualbg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.rituals-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.small-title-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    z-index: 2;
}

.title-bg-flower {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 94px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    object-fit: contain;
}

.small-title {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #784E40;
    font-weight: 500;
    letter-spacing: 2px;
}

.rituals-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    color: #784E40;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.rituals-desc {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #784E40;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.rituals-carousel {
    margin: 0 -15px;
}

.ritual-item {
    padding: 0 15px;
    outline: none;
}

.ritual-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: transparent;
}

.ritual-card-offset {
    margin-top: 50px;
}

.ritual-image {
    position: relative;
    line-height: 0;
}

.ritual-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.ritual-label {
    position: absolute;
    bottom: 60px;
    left: 0;
    background-color: #A36F7A;
    color: #ffffff;
    padding: 15px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    width: auto;
    min-width: 180px;
    line-height: 1;
}

.ritual-card:hover .ritual-label {
    background-color: #784E40;
}

/* Slick Dots Styling */
.pagination-dots {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.pagination-dots .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: center;
    gap: 20px;
}

.pagination-dots .slick-dots li {
    margin: 0;
}

.pagination-dots .slick-dots li .dot {
    width: 14px;
    height: 14px;
    border: 2px solid #333;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dots .slick-dots li.slick-active .dot {
    background-color: #A36F7A;
    border-color: #A36F7A;
}

.pagination-dots .slick-dots li button {
    display: none;
}

/* Responsiveness for Rituals */
@media (max-width: 1200px) {
    .ritual-image img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .rituals-main-title {
        font-size: 48px;
    }

    .mt-lg-n5 {
        margin-top: 0;
    }

    .ritual-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .rituals-section {
        padding: 80px 0;
    }

    .rituals-main-title {
        font-size: 38px;
    }

    .ritual-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .rituals-main-title {
        font-size: 32px;
    }

    .ritual-label {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Best Seller Section
   ========================================================================== */

.small-title {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #8B6B60;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ==========================================================================
   Best Seller Section
   ========================================================================== */

.best-seller-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    color: #8B6B60;
    text-transform: uppercase;
    font-weight: 500;
    margin: 15px auto 0;
    line-height: 58px;
    letter-spacing: 0px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 40px;
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #FAF7F5;
    aspect-ratio: 1/1;
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    /* Helps if images have white bgs */
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(163, 111, 122, 0.9);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    border-radius: 2px;
}

.countdown-timer {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    z-index: 2;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #A36F7A;
    font-weight: 500;
    text-transform: uppercase;
    background: #FFFBFA;
    padding: 6px 4px;
    border-radius: 6px;
    flex: 1;
    min-width: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: none;
}

.time-box span {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: -1px;
    line-height: 1;
}

.product-info {
    padding: 20px 0 0;
}

.product-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.star-icon {
    color: #FFB800;
    font-size: 24px;
}

.rating-count {
    font-size: 11px;
    color: #888;
    margin-left: 4px;
    font-family: "Jost", sans-serif;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-old {
    text-decoration: line-through;
    color: #b1b1b1;
    font-size: 14px;
    font-family: "Jost", sans-serif;
}

.price-new {
    color: #784E40;
    font-size: 18px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
}

@media (max-width: 991px) {

    .section-main-title {
        font-size: 40px;
        line-height: 1.1;
    }

    .product-title {
        font-size: 18px;
        height: auto;
    }
}

/* ==========================================================================
   Logos Section
   ========================================================================== */

.logos-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    transition: all 0.4s ease;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item:hover img {
    opacity: 1;
}

@media (max-width: 1200px) {
    .logo-item {
        min-width: 220px;
        flex: 0 0 calc(33.333% - 50px);
    }

    .logos-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logos-section {
        padding: 60px 0;
    }

    .logo-item {
        flex: 0 0 calc(50% - 50px);
    }

    .best-seller-section {
        padding: 100px 0 50px;
    }

}

@media (max-width: 480px) {
    .logo-item {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonials-section {
    padding: 0px 0px 0px;
    background-color: #ffffff;
}

.testimonial-content {
    padding-right: 50px;
}

.testimonial-label-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 0;
    isolation: isolate;
    /* Create stacking context for z-index: -1 */
}

.testimonial-flower-bg {
    position: absolute;
    left: 50%;
    top: calc(50% - 10px);
    transform: translate(-50%, -50%);
    width: 66px !important;
    height: 94px !important;
    z-index: -1;
    opacity: 0.3;
}

.testimonial-label {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.testimonial-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    color: #846E44;
    margin-bottom: 35px;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonial-desc {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    max-width: 420px;
}

.testimonial-slider-container {
    position: relative;
    padding: 0;
}

.testimonial-slide {
    display: flex !important;
    align-items: center;
    position: relative;
    outline: none;
    padding: 0px 0;
}

.testimonial-image-box {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
    margin-right: -120px;
}

.testimonial-image-box img {
    width: 100%;
    display: block;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-card-wrapper {
    flex: 1;
    z-index: 1;
}

.testimonial-card {
    background-color: #FFF0F2;
    padding: 100px 80px 100px 180px;
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}


.testimonial-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    /* Reduced to control gap to dots */
}

.author-line {
    width: 40px;
    height: 1px;
    background-color: #9D5F6D;
}

.author-name {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.author-role {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #999;
}

.floral-deco {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 184px;
    height: 187px;
    object-fit: contain;
    pointer-events: none;
}

.testimonial-pagination {
    position: absolute;
    bottom: 95px;
    left: calc(45% + 60px);
    z-index: 10;
}

.testimonial-pagination .slick-dots {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.testimonial-pagination .slick-dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-pagination .slick-dots .slick-active .slick-dot {
    background-color: #9D5F6D;
    border-color: #9D5F6D;
}

@media (max-width: 1400px) {
    .testimonial-image-box {
        margin-right: -150px;
    }

    .testimonial-card {
        padding-left: 200px;
    }

    .testimonial-pagination {
        left: calc(45% + 50px);
    }
}

@media (max-width: 1200px) {
    .testimonial-main-title {
        font-size: 52px;
    }

    .testimonial-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .testimonial-slide {
        flex-direction: column;
        padding-top: 80px;
    }

    .testimonial-image-box {
        width: 80%;
        margin-right: 0;
        margin-bottom: -100px;
        z-index: 3;
    }

    .testimonial-card-wrapper {
        width: 100%;
    }

    .testimonial-card {
        padding: 150px 40px 80px;
        text-align: center;
        min-height: auto;
    }

    .quote-circle {
        margin: 0 auto 30px;
    }

    .testimonial-author {
        justify-content: center;
    }

    .testimonial-pagination {
        position: static;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonial-main-title {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .floral-deco {
        width: 180px;
    }
}

/* ==========================================================================
   Connect Section
   ========================================================================== */

.connect-section {
    padding: 120px 0;
    background: url('../images/lets-connect.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 107, 120, 0.55);
    z-index: 1;
}

.connect-section .container {
    position: relative;
    z-index: 2;
}

.connect-card {
    background: #FFFBFA;
    padding: 80px 70px;
    border-radius: 24px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.connect-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.form-control-fay,
.form-select-fay {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 18px 25px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #333;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.form-control-fay:focus,
.form-select-fay:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(157, 95, 109, 0.12);
    background-color: #fff;
}

.form-control-fay::placeholder {
    color: #999;
}

.form-select-fay {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.btn-submit-fay {
    background-color: #9D5F6D;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    margin-top: 15px;
}

.btn-submit-fay:hover {
    background-color: #834f5b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(157, 95, 109, 0.3);
}

@media (max-width: 991px) {
    .connect-card {
        padding: 50px 40px;
    }

    .connect-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .connect-section {
        padding: 80px 0;
    }

    .connect-card {
        padding: 40px 25px;
    }

    .connect-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .form-control-fay,
    .form-select-fay {
        padding: 15px 20px;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.gallery-header {
    margin-bottom: 60px;
}

.section-label-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    padding: 20px 0;
    isolation: isolate;
}

.section-flower-bg {
    position: absolute;
    left: 50%;
    top: calc(50% - 10px);
    transform: translate(-50%, -50%);
    width: 66px !important;
    height: 94px !important;
    z-index: -1;
    opacity: 0.3;
}

.section-label {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.gallery-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1.1;
    color: #1a1a1a;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 5px;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slider .slick-list {
    margin: 0 -15px;
}

.gallery-item {
    padding: 0 15px;
    outline: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Custom Arrows */
.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.gallery-prev,
.gallery-next {
    width: 35px;
    height: 35px;
    background-color: #E6D8D8;
    color: #555;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.gallery-prev {
    margin-left: -17px;
}

.gallery-next {
    margin-right: -17px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: #9D5F6D;
    color: #fff;
}

@media (max-width: 1200px) {
    .gallery-slider-wrapper {
        padding: 0 20px;
    }

    .gallery-prev {
        margin-left: 5px;
    }

    .gallery-next {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .gallery-main-title {
        font-size: 42px;
    }
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */

.instagram-section {
    padding: 100px 0;
    background-color: #F7F4F0;
    text-align: center;
}

.instagram-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1.1;
    color: #9D5F6D;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 50px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-title {
        font-size: 42px;
    }
}


@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-title {
        font-size: 34px;
    }
}

/* ==========================================================================
   Site Footer Styles
   ========================================================================== */

.site-footer {
    background-color: #916A5F;
    color: #ffffff;
    padding: 100px 0 0;
    font-family: 'Jost', sans-serif;
}

.footer-main {
    padding-bottom: 60px;
}

.footer-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #ffffff;
    text-transform: capitalize;
}

.footer-col {
    margin-bottom: 40px;
}

.contact-info .brand-name {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-link {
    display: block;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f1f1f1;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #ffffff;
    text-decoration: none !important;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #f1f1f1;
    transform: translateX(5px);
}

/* Newsletter Styles */
.newsletter-form {
    max-width: 350px;
}

.input-row {
    margin-bottom: 20px;
}

.newsletter-input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: none;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    border-radius: 0;
    outline: none;
}

.newsletter-input::placeholder {
    color: #A9A9A9;
}

.newsletter-btn {
    width: 160px;
    height: 50px;
    background-color: #825f56;
    color: #ffffff;
    border: none;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background-color: #714e44;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #ffffff;
    background: transparent;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
}

.checkbox-group label {
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.95;
}

.newsletter-btn:hover {
    background-color: #63463c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: #7A564A;
}

.checkbox-group label {
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    opacity: 0.9;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: #784E40;
    padding: 25px 0;
    margin-top: 40px;
}

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
    color: #ffffff;
}

.language-switcher:hover {
    opacity: 0.8;
}

.flag-img {
    width: 20px;
    height: auto;
}

.arrow-up {
    font-size: 14px;
    margin-left: 2px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .site-footer {
        padding: 60px 0 0;
    }

    .footer-title {
        margin-bottom: 25px;
    }

    .footer-main {
        padding-bottom: 0px;
    }

    .menu-toggle {
        background: #fff;
    }
}

/* ==========================================================================
   Product Page Styles
   ========================================================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #f7f4f0 0%, #faf8f5 100%);
    padding: 60px 0 40px;
    margin-top: 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
    font-family: "Jost", sans-serif;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.breadcrumb-item a {
    color: #9b6b77;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #d4a574;
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.page-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Filter Sidebar */
.filter-sidebar {
    background: #f7f4f0;
    border-radius: 15px;
    padding: 30px;
    position: sticky;
    top: 120px;
}

.filter-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
}

.filter-group {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0d8cf;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.price-label strong {
    color: #9b6b77;
    font-weight: 600;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d4a574;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: #9b6b77;
    box-shadow: 0 0 0 3px rgba(155, 107, 119, 0.1);
}

.btn-filter-apply {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #9b6b77, #d4a574);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 107, 119, 0.3);
}

/* Custom Checkbox */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #d4a574;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover input~.checkmark {
    background-color: #faf8f5;
}

.filter-checkbox input:checked~.checkmark {
    background-color: #9b6b77;
    border-color: #9b6b77;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked~.checkmark:after {
    display: block;
}

.label-text {
    transition: color 0.3s ease;
}

.filter-checkbox:hover .label-text {
    color: #9b6b77;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f7f4f0;
}

.products-count {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    margin: 0;
}

.products-count strong {
    color: #9b6b77;
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.sort-select {
    padding: 8px 35px 8px 15px;
    border: 1px solid #d4a574;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%239b6b77" d="M6 9L1 4h10z"/></svg>') no-repeat right 12px center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #9b6b77;
    box-shadow: 0 0 0 3px rgba(155, 107, 119, 0.1);
}

/* Products Grid */
.products-grid {
    margin-bottom: 50px;
}

.products-grid .product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-grid .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #d4a574;
}

.products-grid .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f7f4f0;
}

.products-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-grid .product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(155, 107, 119, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.products-grid .product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.btn-quick-view,
.btn-add-cart {
    padding: 12px 30px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.products-grid .product-card:hover .btn-quick-view {
    transform: translateY(0);
    transition-delay: 0.1s;
}

.products-grid .product-card:hover .btn-add-cart {
    transform: translateY(0);
    transition-delay: 0.2s;
}

.btn-quick-view:hover,
.btn-add-cart:hover {
    background: #ffffff;
    color: #9b6b77;
}

/* Badge Styles */
.badge-discount,
.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-discount {
    background: linear-gradient(135deg, #f63434, #ff6b6b);
    color: #ffffff;
}

.badge-new {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #ffffff;
}

/* Product Info */
.products-grid .product-info {
    padding: 20px 20px 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-grid .product-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: auto;
}

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

.products-grid .star-icon {
    color: #ffc107;
    font-size: 14px;
}

.products-grid .rating-count {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    color: #999;
    margin-left: 5px;
}

.products-grid .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.products-grid .price-old {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.products-grid .price-new {
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #9b6b77;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border: 2px solid #d4a574;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.page-link:hover {
    background: #9b6b77;
    border-color: #9b6b77;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #9b6b77, #d4a574);
    border-color: #9b6b77;
    color: #ffffff;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .products-sort {
        width: 100%;
    }

    .sort-select {
        flex: 1;
    }

    .header-logo {
        width: auto;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 36px;
    }

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

    .filter-sidebar {
        padding: 25px 20px;
    }

    .products-grid .product-title {
        font-size: 18px;
        min-height: auto;
    }

    .pagination-wrapper {
        margin-top: 40px;
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }

    .filter-title {
        font-size: 24px;
    }

    .products-grid .product-card {
        margin-bottom: 20px;
    }

    .pagination-list {
        gap: 5px;
    }

    .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

/* Product Detail Section */
.product-detail-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Product Images */
.product-images-wrapper {
    position: sticky;
    top: 120px;
}

.main-product-image {
    background: #f7f4f0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    background: #f7f4f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover {
    border-color: #d4a574;
    transform: translateY(-3px);
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.thumbnail-item.active {
    border-color: #9b6b77;
    box-shadow: 0 5px 15px rgba(155, 107, 119, 0.3);
}

/* Product Detail Info */
.product-detail-info {
    padding-left: 30px;
}

.product-detail-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.product-detail-rating .star-icon {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.product-detail-price {
    margin-bottom: 25px;
}

.price-current {
    font-family: "Jost", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #9b6b77;
}

.product-short-desc {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f7f4f0;
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-label {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.meta-value {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
}

.meta-value.in-stock {
    color: #4CAF50;
    font-weight: 600;
}

/* Product Actions */
.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #d4a574;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 50px;
    border: none;
    background: #f7f4f0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #9b6b77;
    color: #ffffff;
}

.quantity-selector input {
    width: 70px;
    height: 50px;
    border: none;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #ffffff;
}

.quantity-selector input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
    height: 50px;
    padding: 0 35px;
    background: linear-gradient(135deg, #9b6b77, #d4a574);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 107, 119, 0.3);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 2px solid #d4a574;
    background: #ffffff;
    color: #9b6b77;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: #9b6b77;
    border-color: #9b6b77;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Product Features */
.product-features {
    padding: 25px;
    background: #faf8f5;
    border-left: 4px solid #9b6b77;
    border-radius: 8px;
}

.product-features h4 {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features ul li {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9b6b77;
    font-weight: 700;
}

/* Product Tabs */
.product-tabs-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f7f4f0;
}

.product-tabs-nav {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #f7f4f0;
}

.tab-item {
    margin: 0;
}

.tab-link {
    padding: 15px 35px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-link:hover {
    color: #9b6b77;
}

.tab-link.active {
    color: #9b6b77;
    border-bottom-color: #9b6b77;
}

.product-tabs-content {
    padding: 30px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.tab-pane h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.tab-pane h4 {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tab-pane p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-pane ul li {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.tab-pane ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #9b6b77;
    font-size: 20px;
}

/* Additional Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.info-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-label {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 18px 20px;
    width: 200px;
    background: #faf8f5;
}

.info-value {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    padding: 18px 20px;
}

/* Reviews */
.reviews-summary {
    background: #f7f4f0;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 700;
    color: #9b6b77;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars .star-icon {
    color: #ffc107;
    font-size: 24px;
}

.reviews-summary p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #666;
    margin: 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    padding: 30px;
    background: #faf8f5;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviewer-name {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

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

.review-rating .star-icon {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    color: #999;
}

.review-text {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Related Products */
.related-products-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f7f4f0;
}

.section-title-related {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive Design for Product Detail */
@media (max-width: 991px) {
    .product-images-wrapper {
        position: static;
        margin-bottom: 40px;
    }

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

    .product-detail-title {
        font-size: 36px;
    }

    .price-current {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .product-detail-section {
        padding: 50px 0;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .price-current {
        font-size: 28px;
    }

    .product-actions {
        flex-wrap: wrap;
    }

    .btn-add-to-cart {
        width: 100%;
        order: 3;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .product-tabs-nav {
        flex-wrap: wrap;
    }

    .tab-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-pane h3 {
        font-size: 26px;
    }

    .rating-number {
        font-size: 48px;
    }

    .review-header {
        flex-direction: column;
        gap: 10px;
    }

    .section-title-related {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .product-detail-title {
        font-size: 24px;
    }

    .price-current {
        font-size: 24px;
    }

    .meta-label {
        min-width: 100px;
        font-size: 14px;
    }

    .meta-value {
        font-size: 14px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title-related {
        font-size: 28px;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page-section {
    padding: 100px 0;
    background-color: #fcfaf9;
}

.contact-header {
    margin-bottom: 70px;
}

.contact-desc {
    max-width: 750px;
    margin: 20px auto 0;
    font-family: "Jost", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(157, 95, 109, 0.12);
    border-color: rgba(157, 95, 109, 0.1);
}

.contact-info-card .icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #f7f4f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b6b77;
    font-size: 26px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    background: #9b6b77;
    color: #fff;
    transform: rotateY(360deg);
}

.contact-info-card .info-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-info-card .info-content p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card .info-content p a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-info-card .info-content p a:hover {
    color: #9b6b77;
}

.contact-form-wrapper {
    padding: 60px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.form-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 45px;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 991px) {
    .contact-page-section {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        margin-top: 50px;
        padding: 40px;
    }

    .contact-main-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .contact-info-card .icon-box {
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

.services-hero {
    padding: 100px 0 60px;
    background-color: #F7F4F0;
}

.services-hero .breadcrumb {
    margin-bottom: 30px;
}

.services-hero .breadcrumb-item a {
    color: #9b6b77;
    font-weight: 500;
}

.services-hero h1 {
    font-family: "Cormorant Garamond", serif;
    color: #1a1a1a;
}

.services-grid-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.service-detail-card.reverse {
    flex-direction: row;
}

.service-image-box {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-detail-card:hover .service-image-box img {
    transform: scale(1.05);
}

.service-content-box {
    flex: 1;
    padding: 20px 0;
}

.service-number {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9b6b77;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.service-number::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #9b6b77;
    vertical-align: middle;
    margin-left: 10px;
}

.service-content-box h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-content-box p {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.btn-service-link {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-service-link i {
    transition: transform 0.3s ease;
}

.btn-service-link:hover {
    color: #9b6b77;
}

.btn-service-link:hover i {
    transform: translateX(5px);
}

.bridal-card {
    background: #F7F4F0;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
}

.bridal-card .service-image-box {
    border-radius: 0;
    box-shadow: none;
    padding: 10px 30px;
}

.bridal-card .service-image-box img {
    height: 500px;
}

.bridal-card .service-content-box {
    padding: 60px;
}

.services-connect {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/ritualbg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
}

.connect-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 25px;
}

.connect-box p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.services-connect .btn-outline-fay {
    border-color: #ffffff;
    color: #ffffff;
}

.services-connect .btn-outline-fay:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Responsive Styles for Services */
@media (max-width: 991px) {
    .service-detail-card {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 30px;
    }

    .service-detail-card .service-image-box {
        order: -1;
    }

    .service-image-box {
        width: 100%;
    }

    .service-image-box img {
        height: 350px;
    }

    .service-content-box h3 {
        font-size: 36px;
    }

    .bridal-card .service-image-box img {
        height: 350px;
    }

    .bridal-card .service-content-box {
        padding: 40px;
    }

    .connect-box h2 {
        font-size: 42px;
    }

    .bridal-card .service-image-box {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 80px 0 40px;
    }

    .services-grid-section {
        padding: 80px 0;
    }

    .services-connect {
        padding: 80px 0;
    }

    .service-detail-card.bridal-card {
        margin-top: 0px;
    }
}

/* ==========================================================================
   Service Detail Page Styles
   ========================================================================== */

.detail-hero-section {
    padding: 120px 0 80px;
    background-color: #F7F4F0;
    overflow: hidden;
}

.service-category {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #9b6b77;
    margin-bottom: 20px;
}

.detail-hero-content .service-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.scroll-link {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.scroll-link:hover i {
    transform: translateY(5px);
}

.detail-hero-image {
    position: relative;
    padding: 20px;
}

.rounded-circle-custom {
    border-radius: 50% 50% 0 50%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-badge .years {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 700;
    color: #9b6b77;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.rituals-detail-grid {
    padding: 100px 0;
    background: #ffffff;
}

.ritual-detail-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eee;
}

.ritual-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ritual-detail-card .card-image {
    height: 250px;
    overflow: hidden;
}

.ritual-detail-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ritual-detail-card:hover .card-image img {
    transform: scale(1.1);
}

.ritual-detail-card .card-content {
    padding: 30px;
}

.ritual-detail-card .card-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ritual-perks {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ritual-perks li {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ritual-perks li i {
    color: #9b6b77;
}

@media (max-width: 991px) {
    .detail-hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .detail-hero-content .service-title {
        font-size: 48px;
    }

    .service-intro {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .detail-hero-image {
        margin-top: 60px;
    }

    .rituals-detail-grid {
        padding: 60px 0 100px;
    }
}

/* ==========================================================================
   Minimal Blog Styles
   ========================================================================== */

.blog-hero-minimal {
    padding: 100px 0 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.blog-main-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.blog-breadcrumb {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

.blog-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: #9b6b77;
}

.blog-breadcrumb span {
    margin: 0 10px;
}

.blog-listing-section {
    padding: 80px 0;
}

.blog-post-card {
    background: transparent;
    transition: all 0.4s ease;
}

.post-img-box {
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 4px;
}

.post-img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .post-img-box img {
    transform: scale(1.05);
}

.post-body .post-date {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9b6b77;
    margin-bottom: 15px;
}

.post-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #9b6b77;
}

.post-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-link {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.post-link:hover {
    color: #9b6b77;
    gap: 12px;
}

/* Minimal Pagination */
.pagination-minimal {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
}

.pagination-minimal li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-minimal li.active {
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
}

.pagination-minimal li:hover:not(.active):not(.disabled) {
    color: #9b6b77;
}

.pagination-minimal li.disabled {
    color: #ccc;
    cursor: default;
}

/* Detail Page Header */
.blog-detail-wrapper {
    padding: 120px 0 100px;
}

.blog-post-header {
    margin-bottom: 60px;
}

.blog-post-meta {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.blog-post-meta .post-category {
    color: #9b6b77;
    font-weight: 600;
}

.dot-separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 15px;
    vertical-align: middle;
}

.blog-post-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
}

.blog-post-featured-image {
    margin-bottom: 60px;
}

.blog-post-featured-image img {
    width: 100%;
    border-radius: 8px;
}

.blog-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    margin: 50px 0 25px;
}

.lead-text {
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
}

.text-quote {
    padding: 40px;
    background: #fdfaf7;
    border-left: 4px solid #9b6b77;
    margin: 60px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: italic;
    color: #444;
}

.content-gallery {
    margin: 60px 0;
}

.content-gallery img {
    border-radius: 4px;
}

.blog-post-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    margin-top: 80px;
}

.post-social-share span {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    margin-right: 20px;
}

.post-social-share a {
    color: #1a1a1a;
    margin-right: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.post-social-share a:hover {
    color: #9b6b77;
}

.back-link {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-link:hover {
    color: #9b6b77;
}

@media (max-width: 991px) {
    .blog-post-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .blog-hero-minimal {
        padding: 60px 0 40px;
    }

    .blog-main-heading {
        font-size: 40px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-detail-wrapper {
        padding: 80px 0 60px;
    }
}

/* ==========================================================================
   Portfolio / Gallery Styles
   ========================================================================== */

.portfolio-hero {
    padding: 120px 0 60px;
    background-color: #F7F4F0;
}

.portfolio-title {
    font-family: "Cormorant Gramond", serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.portfolio-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
}

.portfolio-grid-section {
    padding: 80px 0;
}

.gallery-item-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
}

.portfolio-img-box {
    position: relative;
    overflow: hidden;
}

.portfolio-img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(155, 107, 119, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
    font-size: 24px;
}

.gallery-item-wrapper:hover .gallery-icon-overlay {
    opacity: 1;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.fays-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fays-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 80vh;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #fff;
    font-family: "Cormorant Gramond", serif;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    z-index: 2;
}

.nav-prev {
    left: 40px;
}

.nav-next {
    right: 40px;
}

.lightbox-nav:hover {
    color: #9b6b77;
}

@media (max-width: 767px) {
    .portfolio-hero {
        padding: 80px 0 40px;
    }

    .portfolio-title {
        font-size: 40px;
    }

    .portfolio-img-box img {
        height: 300px;
    }

    .lightbox-nav {
        padding: 10px;
        font-size: 24px;
    }

    .nav-prev {
        left: 10px;
    }

    .nav-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-caption {
        font-size: 18px;
    }
}

/* ==========================================================================
   Privacy Policy Page Styles
   ========================================================================== */

.privacy-policy-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.privacy-header {
    margin-bottom: 60px;
}

.privacy-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.privacy-last-updated {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #9b6b77;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-content-wrapper {
    font-family: "Jost", sans-serif;
    color: #444;
    line-height: 1.8;
}

.privacy-content-wrapper h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.privacy-content-wrapper p {
    margin-bottom: 20px;
    font-size: 17px;
}

.privacy-content-wrapper ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.privacy-content-wrapper ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.privacy-content-wrapper ul li::before {
    content: '•';
    color: #9b6b77;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.privacy-contact-box {
    background-color: #F7F4F0;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.privacy-contact-box h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.privacy-contact-box p {
    margin-bottom: 10px;
}

.privacy-contact-box a {
    color: #9b6b77;
    font-weight: 600;
}

@media (max-width: 767px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

    .privacy-main-title {
        font-size: 40px;
    }

    .privacy-content-wrapper h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   Terms and Conditions Page Styles
   ========================================================================== */

.terms-conditions-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.terms-header {
    margin-bottom: 60px;
}

.terms-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.terms-last-updated {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #9b6b77;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-content-wrapper {
    font-family: "Jost", sans-serif;
    color: #444;
    line-height: 1.8;
}

.terms-content-wrapper h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.terms-content-wrapper p {
    margin-bottom: 20px;
    font-size: 17px;
}

.terms-content-wrapper ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.terms-content-wrapper ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.terms-content-wrapper ul li::before {
    content: '•';
    color: #9b6b77;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 767px) {
    .terms-conditions-section {
        padding: 60px 0;
    }

    .terms-main-title {
        font-size: 40px;
    }

    .terms-content-wrapper h2 {
        font-size: 28px;
    }
}