@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tenor+Sans&family=Yatra+One&display=swap');

:root {
    --primary-color: #d9c5a5;
    --secondary-color: #d9c5a5;
    --light-bg: #61493d40;
    --text-color: #a8864d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond',
        serif;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #68798b;
}

p {
    font-family: "Cormorant Garamond",
        serif;
    font-weight: 400;
    color: #000;
    font-size: 20px;
    line-height: 1.4;
}



/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.modern-nav-link,
.modern-header-btn,
.marquee-item {
    font-family: "Montserrat", sans-serif;
}


/* ---------------------------------------------------------
   ALL MAIN HEADINGS
--------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    color: #000;
}

h2 {
    font-size: 48px;
}


/* ---------------------------------------------------------
   PAGE HERO HEADINGS
--------------------------------------------------------- */

.maya-contact-hero h1,
.maya-story-content h2,
.maya-why-content h2,
.maya-values-heading h2,
.maya-home-about-content h2,
.maya-home-heading h2 {
    font-family: "Cormorant Garamond", serif !important;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.maya-footer-heading {
    font-family: "Montserrat", sans-serif;
}

.maya-footer-brand,
.maya-footer-links,
.maya-contact-item,
.maya-footer-bottom {
    font-family: "Montserrat", sans-serif;
}


/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

.maya-about-btn,
.modern-header-btn {
    font-family: "Montserrat", sans-serif;
}


/* ---------------------------------------------------------
   SMALL LABELS
--------------------------------------------------------- */

.maya-section-label,
.maya-home-label,
.maya-home-heading>span,
.maya-contact-label,
.maya-contact-hero-content>span {
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
}


/* ---------------------------------------------------------
   BREADCRUMB
--------------------------------------------------------- */

.maya-breadcrumb {
    font-family: "Montserrat", sans-serif;
}


/* ---------------------------------------------------------
   PRODUCT TEXT
--------------------------------------------------------- */

.maya-home-product-card {
    font-family: "Montserrat", sans-serif;
}


/* Product title */
.maya-home-product-card h3,
.maya-home-product-card h4 {
    font-family: "Cormorant Garamond", serif;
}


/* ---------------------------------------------------------
   FOOTER LOGO TEXT
--------------------------------------------------------- */

.maya-footer-logo strong,
.maya-footer-logo span {
    font-family: "Montserrat", sans-serif;
}

/* Luxury heading */
h1,
h2 {
    font-weight: 500;
}

/* Smaller headings */
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Body */
body {
    font-weight: 400;
}

/* Navigation */
.modern-nav-link {
    font-weight: 500;
}

/* Buttons */
.modern-header-btn {
    font-weight: 600;
}


/* =========================================================
   MAYA ORNAMENTS
   MARQUEE + TRANSPARENT HEADER + STICKY HEADER
========================================================= */


/* =========================================================
   SCROLLING ANNOUNCEMENT MARQUEE
========================================================= */

.marquee-bar {

    background: var(--light-bg);

    color: #000;

    overflow: hidden;

    padding: 9px 0;

    white-space: nowrap;

    position: relative;

    z-index: 1100;

}


.marquee-track {

    display: inline-flex;

    width: max-content;

    animation: marquee-scroll 22s linear infinite;

}


.marquee-item {

    display: inline-flex;

    align-items: center;

    padding: 0 40px;

    position: relative;

    color: #173f6b;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

}


.marquee-item a {

    color: #E67E22;

    font-weight: 700;

    margin-left: 5px;

    text-decoration: underline;

    text-underline-offset: 2px;

}


@keyframes marquee-scroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


@media (prefers-reduced-motion: reduce) {

    .marquee-track {

        animation: none;

    }

}


/* =========================================================
   MAIN HEADER
========================================================= */

.modern-header {

    position: absolute;

    /*
       Marquee is above the header.
       Therefore header starts below marquee.
    */

    top: 37px;

    left: 0;

    right: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    transition:

        top 0.4s ease,

        background 0.4s ease,

        box-shadow 0.4s ease,

        border-color 0.4s ease,

        backdrop-filter 0.4s ease,

        -webkit-backdrop-filter 0.4s ease;

}


/* =========================================================
   TRANSPARENT HEADER
========================================================= */

.modern-header-transparent {

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.22);

}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.modern-header.scrolled {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid #e8dfd2;

    box-shadow: 0 8px 30px rgba(20, 30, 40, 0.08);

    animation: modernSlideDown 0.4s ease;

}


@keyframes modernSlideDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}


/* =========================================================
   NAVBAR
========================================================= */

.modern-navbar {

    min-height: 88px;

    transition: min-height 0.3s ease;

}


/* Slightly smaller navbar after scrolling */

.modern-header.scrolled .modern-navbar {

    min-height: 76px;

}


/* =========================================================
   LOGO
========================================================= */

.modern-logo {

    display: flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

}


.modern-logo img {

    display: block;

    width: auto;

    height: 90px;

    object-fit: contain;

    transition:

        height 0.3s ease,

        transform 0.3s ease;

}


/* Smaller logo on scroll */

.modern-header.scrolled .modern-logo img {

    height: 72px;

}


/* =========================================================
   OLD LOGO ELEMENTS
   Kept in case they are used somewhere else
========================================================= */

.modern-logo-icon {

    width: 47px;

    height: 47px;

    border-radius: 14px;

    background: linear-gradient(135deg,
            #075985,
            #14b8a6);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    box-shadow: 0 8px 20px rgba(14,
            116,
            144,
            0.22);

}


.modern-logo-text {

    line-height: 1.1;

}


.modern-logo-title {

    color: #075985;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.modern-logo-subtitle {

    color: #7a8d98;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* =========================================================
   NAVIGATION
========================================================= */

.modern-nav-list {

    gap: 5px;

}


.modern-nav-link {

    position: relative;

    color: #000 !important;

    padding: 31px 15px !important;

    transition:

        color 0.3s ease,

        background 0.3s ease;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


/* =========================================================
   TRANSPARENT HEADER NAVIGATION
========================================================= */

.modern-header:not(.scrolled) .modern-nav-link {

    color: #000 !important;

}


.modern-header:not(.scrolled) .modern-nav-link:hover,

.modern-header:not(.scrolled) .modern-nav-link.active {

    color: #000 !important;

}


/* =========================================================
   SCROLLED HEADER NAVIGATION
========================================================= */

.modern-header.scrolled .modern-nav-link {

    color: #111111 !important;

}


.modern-header.scrolled .modern-nav-link:hover,

.modern-header.scrolled .modern-nav-link.active {

    color: #000000 !important;

}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.modern-nav-link::after {

    content: "";

    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 20px;

    height: 2px;

    background: #a8864d;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;

}


/* White underline while transparent */

.modern-header:not(.scrolled) .modern-nav-link:hover::after,

.modern-header:not(.scrolled) .modern-nav-link.active::after {

    background: #a8864d;

    transform: scaleX(1);

}


/* Black underline after scroll */

.modern-header.scrolled .modern-nav-link:hover::after,

.modern-header.scrolled .modern-nav-link.active::after {

    background: #fff;

    transform: scaleX(1);

}


/* =========================================================
   DROPDOWN
========================================================= */

.modern-dropdown-menu {

    border: 0;

    border-radius: 14px;

    padding: 10px;

    min-width: 220px;

    background: #ffffff;

    box-shadow: 0 15px 40px rgba(16,
            70,
            90,
            0.13);

    margin-top: 0 !important;

}


.modern-dropdown-menu .dropdown-item {

    border-radius: 9px;

    padding: 10px 13px;

    color: #355365;

    font-size: 14px;

    font-weight: 500;

    transition: 0.25s;

}


.modern-dropdown-menu .dropdown-item:hover {

    background: #f8f0e5;

    color: #E67E22;

    transform: translateX(3px);

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.modern-header-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #173f6b;

    color: #fff !important;

    text-decoration: none;

    padding: 12px 20px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(230,
            126,
            34,
            0.18);

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        background 0.3s ease;

    white-space: nowrap;

}


.modern-header-btn:hover {

    color: #000 !important;

    background: #a8864d;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(230,
            126,
            34,
            0.28);

}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.modern-menu-toggle {

    border: 0;

    width: 44px;

    height: 44px;

    border-radius: 10px;

    background: #fff;

    color: #000;

    font-size: 23px;

    transition:

        background 0.3s ease,

        color 0.3s ease;

}


.modern-menu-toggle:focus {

    box-shadow: none;

}


/* =========================================================
   SCROLLED MOBILE TOGGLE
========================================================= */

.modern-header.scrolled .modern-menu-toggle {

    background: #f5f5f5;

    color: #111111;

}


/* =========================================================
   GALLERY HERO
========================================================= */

.maya-gallery-hero {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 180px 0 100px;

}


/*
   If your hero already has a background image,
   DON'T add another background here.

   Instead keep your existing background.
*/


.maya-gallery-hero-content {

    position: relative;

    z-index: 2;

}

/* =========================================================
   GALLERY HERO TITLE
========================================================= */

.maya-gallery-hero h1 {

    margin: 10px 0 18px;

    color: #ffffff;

    font-size: clamp(46px,
            5vw,
            70px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -0.5px;

}


.maya-gallery-hero h1 em {

    color: #f1d4a3;

    font-style: italic;

    font-weight: 500;

}


/* =========================================================
   GALLERY HERO DESCRIPTION
========================================================= */

.maya-gallery-hero p {

    max-width: 580px;

    margin: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .modern-header {

        top: 37px;

    }


    .modern-header.scrolled {

        top: 0;

    }


    .modern-navbar {

        min-height: 74px;

    }


    .modern-header.scrolled .modern-navbar {

        min-height: 68px;

    }


    /* -----------------------------------------------------
       MOBILE LOGO
    ----------------------------------------------------- */

    .modern-logo img {

        height: 70px;

    }


    .modern-header.scrolled .modern-logo img {

        height: 62px;

    }


    /* -----------------------------------------------------
       MOBILE MENU
    ----------------------------------------------------- */

    .modern-nav-list {

        padding: 10px 0;

        gap: 0;

    }


    .modern-nav-link {

        padding: 13px 8px !important;

        border-bottom: 1px solid rgba(255,
                255,
                255,
                0.12);

    }


    .modern-nav-link::after {

        display: none;

    }


    /* -----------------------------------------------------
       TRANSPARENT MOBILE MENU
    ----------------------------------------------------- */

    .modern-header:not(.scrolled) .navbar-collapse {

        margin-top: 8px;

        padding: 8px 15px;

        background: #fff;
        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);

        border-radius: 12px;

    }


    .modern-header:not(.scrolled) .modern-nav-link {

        color: #000 !important;

    }


    /* -----------------------------------------------------
       WHITE MOBILE MENU AFTER SCROLL
    ----------------------------------------------------- */

    .modern-header.scrolled .navbar-collapse {

        margin-top: 8px;

        padding: 8px 15px;

        background: #ffffff;

        border-radius: 12px;

        box-shadow: 0 12px 30px rgba(0,
                0,
                0,
                0.08);

    }


    .modern-header.scrolled .modern-nav-link {

        color: #111111 !important;

        border-bottom: 1px solid #eeeeee;

    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .modern-header-btn {

        width: 100%;

        margin: 15px 0;

        justify-content: center;

    }


    /* -----------------------------------------------------
       MOBILE TOGGLE
    ----------------------------------------------------- */

    .modern-menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .maya-gallery-hero {

        min-height: 500px;

        padding: 155px 0 80px;

    }


    .maya-gallery-hero h1 {

        font-size: clamp(42px,
                10vw,
                58px);

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {


    /* Marquee */

    .marquee-bar {

        padding: 8px 0;

    }


    .marquee-item {

        padding: 0 25px;

        font-size: 9px;

        letter-spacing: 1.2px;

    }


    /* Header */

    .modern-header {

        top: 34px;

    }


    .modern-header.scrolled {

        top: 0;

    }


    /* Logo */

    .modern-logo img {

        height: 62px;

    }


    .modern-header.scrolled .modern-logo img {

        height: 56px;

    }


    /* Hero */

    .maya-gallery-hero {

        min-height: 470px;

        padding: 140px 0 70px;

    }


    .maya-gallery-hero-content>span {

        font-size: 9px;

        letter-spacing: 2.5px;

    }


    .maya-gallery-hero h1 {

        font-size: 43px;

        line-height: 1.02;

    }


    .maya-gallery-hero p {

        font-size: 13px;

        line-height: 1.4;

    }


    .maya-gallery-breadcrumb {

        margin-top: 20px;

        font-size: 11px;

    }


}

/* ==========================================
   MAYA ORNAMENTS FOOTER
========================================== */

.maya-footer {
    color: #24486d;
}

/* ==========================================
   MAIN FOOTER
========================================== */

.maya-footer-main {
    background: #173f6b61;
    padding: 65px 0 55px;
    border-top: 1px solid #f3dfc4;
}


/* Logo */

.maya-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 22px;
}

.maya-logo-symbol {
    width: 52px;
    height: 52px;
    border: 2px solid #0a4f91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4f91;
    font-size: 22px;
}

.maya-footer-logo strong {
    display: block;
    color: #0a4f91;
    font-size: 24px;
    letter-spacing: 2px;
}

.maya-footer-logo span {
    display: block;
    color: #e87916;
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 1px;
}



/* ==========================================
   SOCIAL ICONS
========================================== */

.maya-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.maya-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--text-color);
    color: #173f6b;
    text-decoration: none;
    transition: .3s;
}

.maya-socials a:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
    transform: translateY(-4px);
}


/* ==========================================
   FOOTER HEADINGS
========================================== */

.maya-footer-heading {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.maya-footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--text-color);
}


/* ==========================================
   FOOTER LINKS
========================================== */

.maya-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.maya-footer-links li {
    margin-bottom: 12px;
}

.maya-footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.maya-footer-links a::before {
    content: "›";
    color: var(--text-color);
    font-size: 18px;
    margin-right: 8px;
    transition: .3s;
}

.maya-footer-links a:hover {
    color: var(--text-color);
    padding-left: 5px;
}


/* ==========================================
   CONTACT
========================================== */

.maya-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.maya-contact-icon {
    min-width: 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #173f6b;
    border-radius: 10px;
    border: 1px solid #ead7bd;
}

.maya-contact-item span {
    display: block;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maya-contact-item p {
    margin: 3px 0 0;
}


/* ==========================================
   BOTTOM
========================================== */

.maya-footer-bottom {
    background: #173f6b61;
    border-top: 1px solid #ead8bf;
    padding: 17px 0;
}

.maya-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.maya-bottom-inner p {
    margin: 0;
}

.maya-bottom-inner strong {
    color: var(--text-color);
}

.maya-bottom-links {
    display: flex;
    gap: 20px;
}

.maya-bottom-links a {
    color: #000;
    text-decoration: none;
    transition: .3s;
}

.maya-bottom-links a:hover {
    color: #e87916;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .maya-newsletter-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .maya-newsletter-form {
        width: 100%;
        min-width: auto;
    }
}


@media (max-width: 767px) {

    .maya-newsletter {
        padding-top: 40px;
    }

    .maya-newsletter-box {
        padding: 30px 22px;
    }

    .maya-newsletter-content h2 {
        font-size: 25px;
    }

    .maya-newsletter-form {
        display: block;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .maya-newsletter-form input {
        width: 100%;
        background: #fff;
        border-radius: 30px;
        margin-bottom: 10px;
        padding: 14px 18px;
    }

    .maya-newsletter-form button {
        width: 100%;
    }

    .maya-footer-main {
        padding: 45px 0;
    }

    .maya-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .maya-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

.about_content strong {
    color: #E67E22;
    font-weight: 600;
}

.about-img img {
    border-radius: 300px 300px 0px 0px;
    ;
    border: 5px solid #ce8b39;
}

.about_box {
    background: var(--light-bg);
    padding: 2rem 1rem;
}

.about_box strong {
    font-size: 2rem;
    text-align: center;
    margin: auto;
}

.about_box span {
    color: #000;
    font-weight: 600;
    padding-top: 0.5rem;
}

/* Button */
.pay-btn {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.pay-btn:hover {
    background: #cf6a13;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

/* Image box */
.img-box {
    position: relative;
    overflow: hidden;
}

/* Images */
.img-box img {
    width: 100%;
    display: block;
    transition: 0.8s ease;
}

/* Back image hidden */
.back-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Hover: only image swap */
.product-card:hover .front-img {
    opacity: 0;
}

.product-card:hover .back-img {
    opacity: 1;
}

/* Content always visible */
.product-info {
    padding: 10px 0;
}

.product-info h4 {
    font-size: 16px;
    margin: 5px 0;
}

/* =========================================
   MAYA FEATURE SECTION
========================================= */

.maya-feature-section {
    width: 100%;
    background: #fff;
    padding: 25px 0;
}


/* =========================================
   FEATURE BOX
========================================= */

.maya-feature-box {
    text-align: center;
    padding: 10px 30px 15px;
    min-height: 155px;
    position: relative;
    transition: all 0.35s ease;
}


/* Vertical separator */

.maya-feature-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background: var(--light-bg);
}


/* Remove separator from last item */

.maya-feature-box:last-child::after {
    display: none;
}


/* =========================================
   ICON
========================================= */

.maya-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123f6b;
    font-size: 29px;
    transition: all 0.35s ease;
}


/* Gold icon */

.maya-feature-icon.maya-gold-icon {
    color: #b4772f;
}


/* =========================================
   HEADING
========================================= */

.maya-feature-box h4 {
    margin: 0 0 8px;
    color: #142f4a;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.maya-feature-box p {
    max-width: 240px;
    margin: 0 auto;
    color: #7f7f7f;
}


/* =========================================
   HOVER EFFECT
========================================= */

.maya-feature-box:hover .maya-feature-icon {
    color: #e57b1a;
    transform: translateY(-5px);
}

.maya-feature-box:hover h4 {
    color: #0d4c7d;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .maya-feature-section {
        padding: 35px 0;
    }

    .maya-feature-box {
        padding: 20px 25px;
    }

    /* 2-column layout separators */

    .maya-feature-box:nth-child(2)::after {
        display: none;
    }

    .maya-feature-box:nth-child(1)::after,
    .maya-feature-box:nth-child(3)::after {
        display: block;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .maya-feature-section {
        padding: 25px 0;
    }

    .maya-feature-box {
        min-height: auto;
        padding: 25px 20px;

        border-bottom: 1px solid #eee7de;
    }

    .maya-feature-box::after {
        display: none !important;
    }

    .maya-feature-box:last-child {
        border-bottom: 0;
    }

    .maya-feature-icon {
        margin-bottom: 12px;
    }

    .maya-feature-box h4 {
        font-size: 16px;
    }

    .maya-feature-box p {
        font-size: 13px;
    }

}

/* =====================================
   MAYA CONTACT HERO
===================================== */

.maya-contact-hero {
    background:
        radial-gradient(circle at 85% 30%, rgba(231, 121, 24, .10), transparent 25%),
        linear-gradient(135deg, #fffaf1, #f8f0e4);

    padding: 75px 0 70px;

    border-bottom: 1px solid #eee1d0;

    position: relative;
    overflow: hidden;
}

.maya-contact-hero::before {
    content: "M";
    position: absolute;
    right: 8%;
    top: 10px;


    font-size: 220px;
    font-weight: bold;

    color: rgba(10, 79, 145, .035);
}

.maya-contact-hero-content {
    position: relative;
    z-index: 1;
}

.maya-contact-hero-content>span {
    color: #e87916;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.maya-contact-hero h1 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -0.5px;

    color: #173f6b;

    margin: 10px 0 15px;
}

.maya-contact-hero p {
    max-width: 580px;
}

.maya-breadcrumb {
    margin-top: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
}

.maya-breadcrumb a {
    color: #e87916;
    text-decoration: none;
}

.maya-breadcrumb i {
    color: #9aa3ab;
}

.maya-breadcrumb strong {
    color: #173f6b;
}


/* =====================================
   CONTACT SECTION
===================================== */

.maya-contact-section {
    background: var(--light-bg);
    padding-top: 40px;
}


/* =====================================
   LEFT INFO
===================================== */

.maya-contact-info {
    height: 100%;
    padding: 15px 25px 15px 0;
}

.maya-contact-label {
    color: #e87916;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.maya-contact-info h2 {
    line-height: 1.15;
    margin: 12px 0 20px;
    font-weight: 500;
}

.maya-contact-info h2 span {
    display: block;
    color: #b4772f;
    font-style: italic;
}

.maya-contact-intro {
    max-width: 500px;
    margin-bottom: 35px;
}


/* =====================================
   CONTACT DETAIL
===================================== */

.maya-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 23px;
}

.maya-detail-icon {
    min-width: 47px;
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #173f6b;
    background: #fff6e9;

    border: 1px solid #f1dfc7;

    font-size: 19px;
}

.maya-contact-detail small {
    display: block;
    font-weight: 700;
    color: var(--text-color);
}

.maya-contact-detail h5 {
    color: #173f6b;
    margin: 3px 0 3px;
}

.maya-contact-detail p {
    margin: 0;
}


/* =====================================
   SOCIAL
===================================== */

.maya-contact-social {
    margin-top: 32px;
    padding-top: 25px;

    border-top: 1px solid #eee5d9;
}

.maya-contact-social>span {
    display: block;

    color: var(--text-color);
    font-weight: 700;

    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.maya-contact-social>div {
    display: flex;
    gap: 9px;
}

.maya-contact-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    border: 1px solid #e8ddce;

    color: #174d7b;

    text-decoration: none;

    transition: .3s;
}

.maya-contact-social a:hover {
    color: #fff;
    background: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
}


/* =====================================
   FORM CARD
===================================== */

.maya-contact-form-card {
    background: var(--light-bg);

    border: 1px solid #eee5d9;

    border-radius: 24px;

    padding: 45px;

    box-shadow:
        0 18px 55px rgba(53, 42, 28, .07);
}

.maya-form-heading h3 {
    font-size: 32px;
    font-weight: 500;

    margin: 8px 0;
}

.maya-form-heading h3 em {
    color: #b4772f;
    font-style: italic;
}

.maya-form-heading p {
    margin-bottom: 30px;
}


/* =====================================
   FORM
===================================== */

.maya-contact-form-card label {
    display: block;

    color: var(--text-color);
    font-weight: 600;

    margin-bottom: 8px;
}

.maya-input {
    position: relative;
}

.maya-input>i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #b4772f;

    z-index: 2;
}

.maya-input input,
.maya-input select,
.maya-input textarea {
    width: 100%;

    border: 1px solid #e8dfd3;

    background: #fffdf9;

    border-radius: 10px;

    color: #000;

    outline: none;

    transition: .3s;
}

.maya-input input,
.maya-input select {
    height: 50px;
    padding: 0 15px 0 45px;
}

.maya-input textarea {
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

.maya-input input::placeholder,
.maya-input textarea::placeholder {
    color: #a2a9ae;
}

.maya-input input:focus,
.maya-input select:focus,
.maya-input textarea:focus {
    border-color: #e7a05b;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(232, 121, 22, .08);
}


/* =====================================
   TEXTAREA ICON
===================================== */

.maya-textarea>i {
    top: 20px;
    transform: none;
}


/* =====================================
   SUBMIT
===================================== */

.maya-submit-btn {
    border: 0;

    background: #174d7b;

    color: #fff;

    border-radius: 30px;

    padding: 14px 25px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 10px 25px rgba(232, 121, 22, .18);

    transition: .3s;
}

.maya-submit-btn:hover {
    transform: translateY(-3px);
    background: var(--text-color);
    color: #fff;

    box-shadow: 0 14px 30px rgba(232, 121, 22, .25);
}

map {
    background: var(--light-bg);
}

.maya-submit-btn i {
    transition: .3s;
}

.maya-submit-btn:hover i {
    transform: translateX(4px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .maya-contact-section {
        padding: 60px 0;
    }

    .maya-contact-info {
        padding-right: 0;
    }

    .maya-contact-form-card {
        padding: 35px;
    }
}


@media (max-width: 767px) {

    .maya-contact-hero {
        padding: 55px 0;
    }

    .maya-contact-section {
        padding: 45px 0;
    }

    .maya-contact-info h2 {
        font-size: 36px;
    }

    .maya-contact-form-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .maya-form-heading h3 {
        font-size: 27px;
    }
}

/* =========================================
   GALLERY HERO
========================================= */

.maya-gallery-hero {
    background: #173f6b61;

    padding: 75px 0 70px;

    border-bottom: 1px solid #eee2d2;

    position: relative;
    overflow: hidden;
}

.maya-gallery-hero::after {
    content: "M";

    position: absolute;
    right: 7%;
    top: -30px;

    color: rgba(10, 79, 145, .035);

    font-size: 240px;
    font-weight: 700;
}

.maya-gallery-hero-content {
    position: relative;
    z-index: 2;
}

.maya-gallery-hero h1 {
    color: #000;


    font-size: clamp(40px, 5vw, 60px);

    font-weight: 500;

    margin: 10px 0 15px;
}

.maya-gallery-hero h1 em {
    color: var(--text-color);
    font-style: italic;
}

.maya-gallery-hero p {
    max-width: 600px;
}

.maya-gallery-breadcrumb {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 25px;

    font-size: 20px;
}

.maya-gallery-breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
}

.maya-gallery-breadcrumb i {
    color: #9da5ac;
}

.maya-gallery-breadcrumb strong {
    color: #000;
}


/* =========================================
   GALLERY SECTION
========================================= */

.maya-gallery-section {
    padding: 85px 0;

    background: var(--light-bg);
}


/* =========================================
   HEADING
========================================= */

.maya-gallery-heading {
    max-width: 720px;

    margin: 0 auto 40px;
}


.maya-gallery-heading h2 {
    margin: 9px 0 12px;
}

.maya-gallery-heading h2 em {
    color: var(--text-color);
    font-style: italic;
}

h2 em {
    color: var(--text-color);
    font-style: italic;
}

.maya-gallery-heading p {
    margin: 0;
}


/* =========================================
   FILTERS
========================================= */

.maya-gallery-filters {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 42px;
}

.maya-gallery-filter {
    border: 1px solid #e6dccc;


    color: #536b7d;

    padding: 10px 21px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 600;

    transition: all .3s ease;
}

.maya-gallery-filter:hover,
.maya-gallery-filter.active {
    background: var(--light-bg);
    color: #fff;
    border-color: var(--text-color);

    box-shadow: 0 8px 20px rgba(232, 121, 22, .16);
}


/* =========================================
   GALLERY CARD
========================================= */

.maya-gallery-card {
    height: 410px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: var(--light-bg);

    box-shadow: 0 10px 30px rgba(40, 50, 60, .07);

    cursor: pointer;
}

.maya-gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease,
        filter .5s ease;
}

.maya-gallery-card:hover img {
    transform: scale(1.07);

    filter: brightness(.78);
}


/* =========================================
   OVERLAY
========================================= */

.maya-gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(transparent 45%,
            rgba(12, 43, 68, .80));

    opacity: 0;

    transition: .4s;
}

.maya-gallery-card:hover .maya-gallery-overlay {
    opacity: 1;
}

.maya-gallery-overlay span {
    color: var(--text-color);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.maya-gallery-overlay h3 {
    color: #fff;



    font-size: 21px;

    font-weight: 500;

    margin: 5px 0 0;
}


/* =========================================
   VIEW BUTTON
========================================= */

.maya-gallery-view {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, .5);

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    backdrop-filter: blur(5px);

    transition: .3s;
}

.maya-gallery-view:hover {
    background: #e87916;

    border-color: #e87916;

    transform: rotate(90deg);
}


/* =========================================
   FILTER ANIMATION
========================================= */

.maya-gallery-item {
    transition:
        opacity .4s ease,
        transform .4s ease;
}

.maya-gallery-item.maya-gallery-hidden {
    display: none;
}


/* =========================================
   LIGHTBOX
========================================= */

.maya-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(10, 31, 49, .94);

    backdrop-filter: blur(8px);
}

.maya-gallery-lightbox.active {
    display: flex;
}

.maya-lightbox-content {
    max-width: 1000px;
    max-height: 90vh;

    text-align: center;

    position: relative;
}

.maya-lightbox-content img {
    max-width: 100%;
    max-height: 78vh;

    display: block;

    border-radius: 8px;

    object-fit: contain;

    box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
}

.maya-lightbox-caption {
    color: #fff;



    font-size: 20px;

    margin-top: 15px;
}


/* LIGHTBOX BUTTONS */

.maya-lightbox-close,
.maya-lightbox-prev,
.maya-lightbox-next {
    position: absolute;

    border: 0;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;

    z-index: 5;
}

.maya-lightbox-close {
    top: 25px;
    right: 30px;
}

.maya-lightbox-prev {
    left: 30px;
    top: 50%;
}

.maya-lightbox-next {
    right: 30px;
    top: 50%;
}

.maya-lightbox-close:hover,
.maya-lightbox-prev:hover,
.maya-lightbox-next:hover {
    background: #e87916;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .maya-gallery-section {
        padding: 65px 0;
    }

    .maya-gallery-card {
        height: 370px;
    }
}


@media (max-width: 767px) {

    .maya-gallery-hero {
        padding: 55px 0;
    }

    .maya-gallery-section {
        padding: 50px 0;
    }

    .maya-gallery-heading h2 {
        font-size: 32px;
    }

    .maya-gallery-filters {
        gap: 7px;
        margin-bottom: 30px;
    }

    .maya-gallery-filter {
        padding: 8px 15px;
        font-size: 12px;
    }

    .maya-gallery-card {
        height: 390px;
    }

    .maya-gallery-overlay {
        opacity: 1;
    }

    .maya-lightbox-prev {
        left: 10px;
    }

    .maya-lightbox-next {
        right: 10px;
    }

    .maya-lightbox-close {
        right: 15px;
        top: 15px;
    }
}

/* =========================================
   ABOUT HERO
========================================= */

.maya-about-hero {
    padding: 75px 0 70px;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(232, 121, 22, .10),
            transparent 28%),
        linear-gradient(135deg,
            #fffaf2,
            #f7eee1);

    border-bottom: 1px solid #eee2d3;

    position: relative;
    overflow: hidden;
}

.maya-about-hero::after {
    content: "M";

    position: absolute;

    right: 7%;
    top: -35px;



    font-size: 240px;
    font-weight: 700;

    color: rgba(12, 67, 111, .035);
}

.maya-about-hero-content {
    position: relative;
    z-index: 2;
}

.maya-about-hero-content>span {
    color: #e87916;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.maya-about-hero h1 {
    max-width: 700px;

    color: #173f6b;



    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    font-weight: 500;

    margin: 12px 0 15px;
}

.maya-about-hero h1 em {
    display: block;

    color: #b4772f;

    font-style: italic;
}

.maya-about-hero p {
    max-width: 620px;
}

.maya-about-breadcrumb {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 25px;

    font-size: 13px;
}

.maya-about-breadcrumb a {
    color: #e87916;
    text-decoration: none;
}

.maya-about-breadcrumb i {
    color: #9ca4ab;
}

.maya-about-breadcrumb strong {
    color: #173f6b;
}


/* =========================================
   STORY
========================================= */

.maya-story-section {
    padding: 90px 0;

    background: var(--light-bg);
}


/* IMAGES */

.maya-story-images {
    min-height: 570px;

    position: relative;

    padding-right: 70px;
    padding-bottom: 55px;
}

.maya-story-main-image {
    width: 88%;
    height: 510px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 20px 55px rgba(37, 45, 55, .12);
}

.maya-story-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.maya-story-main-image:hover img {
    transform: scale(1.04);
}


.maya-story-small-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 220px;
    height: 245px;

    padding: 8px;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(37, 45, 55, .15);
}

.maya-story-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 9px;
}


/* EXPERIENCE BADGE */

.maya-story-experience {
    position: absolute;

    left: -15px;
    bottom: 65px;

    width: 130px;
    height: 130px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    background: #173f6b;

    border-radius: 50%;

    border: 8px solid #fffdf9;

    color: #fff;

    box-shadow: 0 12px 30px rgba(23, 63, 107, .2);
}

.maya-story-experience strong {
    color: #f0a052;



    font-size: 30px;
}

.maya-story-experience span {
    font-size: 10px;

    text-align: center;

    line-height: 1.4;

    letter-spacing: .5px;
}


/* STORY CONTENT */

.maya-section-label {
    color: #e87916;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.maya-story-content h2,
.maya-why-content h2 {
    color: #000;



    font-size: 42px;

    line-height: 1.15;

    font-weight: 500;

    margin: 10px 0 22px;
}

.maya-story-content h2 em,
.maya-why-content h2 em {
    color: var(--text-color);

    font-style: italic;
}


/* BUTTON */

.maya-about-btn {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 18px;

    padding: 13px 22px;

    background: #173f6b;

    color: #fff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(232, 121, 22, .17);

    transition: .3s;
}

.maya-about-btn:hover {
    color: #fff;

    background: var(--text-color);

    transform: translateY(-3px);
}

.maya-about-btn i {
    transition: .3s;
}

.maya-about-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   VALUES
========================================= */

.maya-values-section {
    padding: 85px 0;

    background: var(--light-bg);
}

.maya-values-heading {
    max-width: 680px;

    margin: auto;
}


.maya-values-heading h2 {
    color: #000;



    font-size: 40px;

    font-weight: 500;

    margin: 10px 0;
}

.maya-values-heading h2 em {
    color: var(--text-color);
    font-style: italic;
}


/* VALUE CARD */

.maya-value-card {
    min-height: 260px;

    position: relative;

    overflow: hidden;

    padding: 35px 30px;

    background: var(--light-bg);

    border: 1px solid #eee4d5;

    border-radius: 18px;

    transition: .35s;
}

.maya-value-card:hover {
    transform: translateY(-7px);

    border-color: #edc99f;

    box-shadow: 0 15px 40px rgba(58, 49, 37, .08);
}

.maya-value-icon {
    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #173f6b;

    background: #fff5e8;

    font-size: 22px;

    margin-bottom: 23px;
}

.maya-value-card h3 {
    color: #000;
}

.maya-value-card p {
    max-width: 300px;
}

.maya-value-number {
    position: absolute;

    right: 25px;
    bottom: 15px;

    color: rgba(23, 63, 107, .06);



    font-size: 65px;

    font-weight: 700;
}


/* =========================================
   WHY MAYA
========================================= */

.maya-why-section {
    padding: 90px 0;

    background: var(--light-bg);
}

.maya-why-content>p {
    max-width: 550px;

    margin-bottom: 30px;
}


/* WHY LIST */

.maya-why-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 23px;
}

.maya-why-icon {
    min-width: 35px;
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3e2;

    color: #e87916;

    font-size: 14px;
}

.maya-why-item h4 {
    color: #173f6b;

    font-size: 15px;

    margin: 0 0 5px;
}


/* WHY IMAGE */

.maya-why-image {
    height: 520px;

    position: relative;

    overflow: hidden;

    border-radius: 20px;
}

.maya-why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.maya-why-image:hover img {
    transform: scale(1.04);
}


/* BADGE */

.maya-why-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    background: rgba(255, 255, 255, .94);

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.maya-why-badge i {
    color: #e87916;

    font-size: 23px;
}

.maya-why-badge span {
    color: #6c7780;

    font-size: 11px;

    line-height: 1.4;
}

.maya-why-badge strong {
    display: block;

    color: #173f6b;

    font-size: 14px;
}


/* =========================================
   CTA
========================================= */

.maya-about-cta {
    padding: 85px 0;

    background:
        linear-gradient(135deg,
            #173f6b,
            #0c5a85);
}

.maya-about-cta-inner {
    max-width: 720px;

    margin: auto;

    text-align: center;
}


.maya-about-cta-inner h2 {
    color: #fff;



    font-size: 42px;

    font-weight: 500;

    margin: 10px 0 13px;
}

.maya-about-cta-inner h2 em {
    color: #f2b36c;

    font-style: italic;
}

.maya-about-cta-inner p {
    max-width: 560px;

    margin: 0 auto;
}

.maya-cta-btn {
    background: #173f6b;

    margin-top: 25px;
}

.maya-cta-btn:hover {
    background: var(--text-color);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .maya-story-section,
    .maya-why-section {
        padding: 65px 0;
    }

    .maya-story-images {
        min-height: 500px;
    }

    .maya-story-main-image {
        height: 450px;
    }

    .maya-story-content h2,
    .maya-why-content h2 {
        font-size: 36px;
    }

    .maya-why-image {
        height: 450px;
    }
}


@media (max-width: 767px) {

    .maya-about-hero {
        padding: 55px 0;
    }

    .maya-story-section,
    .maya-values-section,
    .maya-why-section {
        padding: 50px 0;
    }

    .maya-story-images {
        min-height: 430px;

        padding-right: 40px;
        padding-bottom: 40px;
    }

    .maya-story-main-image {
        width: 92%;
        height: 390px;
    }

    .maya-story-small-image {
        width: 150px;
        height: 170px;
    }

    .maya-story-experience {
        width: 95px;
        height: 95px;

        left: -5px;
        bottom: 40px;

        border-width: 5px;
    }

    .maya-story-experience strong {
        font-size: 23px;
    }

    .maya-story-experience span {
        font-size: 8px;
    }

    .maya-story-content h2,
    .maya-why-content h2 {
        font-size: 32px;
    }

    .maya-value-card {
        min-height: 230px;
    }

    .maya-why-image {
        height: 400px;
    }

    .maya-about-cta {
        padding: 60px 20px;
    }

    .maya-about-cta-inner h2 {
        font-size: 32px;
    }
}

/* =========================================
   PRODUCTS HERO
========================================= */

.maya-products-hero {
    padding: 75px 0 70px;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(232, 121, 22, .10),
            transparent 28%),
        linear-gradient(135deg,
            #fffaf2,
            #f7eee1);

    border-bottom: 1px solid #eee2d3;

    position: relative;
    overflow: hidden;
}

.maya-products-hero::after {
    content: "M";

    position: absolute;

    right: 7%;
    top: -40px;



    font-size: 240px;
    font-weight: 700;

    color: rgba(12, 67, 111, .035);
}

.maya-products-hero-content {
    position: relative;
    z-index: 2;
}

.maya-products-hero-content>span {
    color: #e87916;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.maya-products-hero h1 {
    color: #173f6b;



    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    font-weight: 500;

    margin: 12px 0 15px;
}

.maya-products-hero h1 em {
    color: #b4772f;
    font-style: italic;
}

.maya-products-hero p {
    max-width: 620px;
}

.maya-products-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    font-size: 13px;
}

.maya-products-breadcrumb a {
    color: #e87916;
    text-decoration: none;
}

.maya-products-breadcrumb i {
    color: #9ca4ab;
}

.maya-products-breadcrumb strong {
    color: #173f6b;
}


/* =========================================
   PRODUCTS SECTION
========================================= */

.maya-products-section {
    padding: 80px 0;

    background: var(--light-bg);
}


/* =========================================
   SIDEBAR
========================================= */

.maya-product-sidebar {
    position: sticky;

    top: 100px;
}

.maya-sidebar-title {
    padding-bottom: 18px;

    border-bottom: 1px solid #e9dfd2;
}

.maya-sidebar-title span {
    color: #e87916;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.maya-sidebar-title h3 {
    color: #173f6b;



    font-size: 27px;

    font-weight: 500;

    margin: 5px 0 0;
}


/* CATEGORY */

.maya-category-list {
    padding: 15px 0;
}

.maya-category {
    width: 100%;

    border: 0;

    background: transparent;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 13px 14px;

    color: #627383;

    font-size: 13px;

    border-radius: 8px;

    transition: .3s;
}

.maya-category b {
    font-size: 10px;

    font-weight: 600;

    color: #9aa3aa;
}

.maya-category:hover,
.maya-category.active {
    background: #fff2e2;

    color: #e87916;
}

.maya-category.active b,
.maya-category:hover b {
    color: #e87916;
}


/* SIDEBAR NOTE */

.maya-sidebar-note {
    margin-top: 20px;

    padding: 28px 23px;

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            #173f6b,
            #0b5a84);

    position: relative;

    overflow: hidden;
}

.maya-sidebar-note::after {
    content: "✦";

    position: absolute;

    right: -10px;
    bottom: -20px;

    font-size: 100px;

    color: rgba(255, 255, 255, .05);
}

.maya-sidebar-note>i {
    color: #f0a15a;

    font-size: 23px;
}

.maya-sidebar-note h4 {
    color: #fff;



    font-size: 19px;

    font-weight: 500;

    margin: 15px 0 8px;
}

.maya-sidebar-note p {
    margin-bottom: 18px;
}

.maya-sidebar-note a {
    color: #f1a35c;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;
}

.maya-sidebar-note a i {
    margin-left: 5px;
}


/* =========================================
   TOP BAR
========================================= */

.maya-products-topbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    margin-bottom: 25px;

    border-bottom: 1px solid #eee5da;
}

.maya-products-count {
    color: #89939b;

    font-size: 12px;
}

.maya-products-count strong {
    color: #173f6b;
}

.maya-product-sort {
    display: flex;

    align-items: center;

    gap: 10px;
}

.maya-product-sort label {
    color: #7c8790;

    font-size: 12px;
}

.maya-product-sort select {
    height: 38px;

    padding: 0 32px 0 12px;

    border: 1px solid #e4dbcf;

    border-radius: 7px;

    background: #fff;

    color: #536b7d;

    font-size: 12px;

    outline: none;
}


/* =========================================
   PRODUCT CARD
========================================= */

.maya-product-card {
    background: #fff;

    border: 1px solid #eee5da;

    border-radius: 15px;

    overflow: hidden;

    transition: .35s;
}

.maya-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(39, 50, 60, .10);

    border-color: #ead3b6;
}


/* PRODUCT IMAGE */

.maya-product-image {
    height: 325px;

    position: relative;

    overflow: hidden;

    background: #f7f1e8;
}

.maya-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.maya-product-card:hover .maya-product-image img {
    transform: scale(1.06);
}


/* BADGE */

.maya-product-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    padding: 6px 10px;

    border-radius: 20px;

    background: #e87916;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}

.maya-product-badge.maya-sale {
    background: #173f6b;
}


/* WISHLIST */

.maya-wishlist {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 3;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .94);

    color: #173f6b;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.maya-wishlist:hover,
.maya-wishlist.active {
    background: #e87916;

    color: #fff;
}


/* QUICK VIEW */

.maya-product-quick {
    position: absolute;

    bottom: 14px;

    left: 0;
    right: 0;

    display: flex;

    justify-content: center;

    transform: translateY(70px);

    transition: .4s;
}

.maya-product-card:hover .maya-product-quick {
    transform: translateY(0);
}

.maya-product-quick button {
    border: 0;

    background: rgba(255, 255, 255, .95);

    color: #173f6b;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 600;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.maya-product-quick button i {
    margin-right: 5px;

    color: #e87916;
}


/* =========================================
   PRODUCT INFO
========================================= */

.maya-product-info {
    padding: 19px 18px 20px;
}

.maya-product-info>span {
    color: #b4772f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.maya-product-info h3 {
    color: #173f6b;



    font-size: 18px;

    font-weight: 500;

    margin: 6px 0 16px;
}

.maya-product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.maya-product-bottom strong {
    color: #e87916;

    font-size: 15px;
}

.maya-product-bottom a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff4e6;

    color: #e87916;

    text-decoration: none;

    transition: .3s;
}

.maya-product-bottom a:hover {
    background: #e87916;

    color: #fff;

    transform: rotate(45deg);
}


/* =========================================
   PAGINATION
========================================= */

.maya-product-pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 45px;
}

.maya-page-number,
.maya-page-arrow {
    width: 38px;
    height: 38px;

    border: 1px solid #e6ddd2;

    border-radius: 50%;

    background: #fff;

    color: #657686;

    font-size: 11px;

    transition: .3s;
}

.maya-page-number:hover,
.maya-page-number.active,
.maya-page-arrow:hover {
    color: #fff;

    background: #e87916;

    border-color: #e87916;
}

.maya-product-pagination>span {
    color: #9ba2a8;

    padding: 0 3px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .maya-products-section {
        padding: 60px 0;
    }

    .maya-product-sidebar {
        position: static;
    }

    .maya-sidebar-note {
        display: none;
    }

    .maya-product-image {
        height: 300px;
    }
}


@media (max-width: 767px) {

    .maya-products-hero {
        padding: 55px 0;
    }

    .maya-products-section {
        padding: 45px 0;
    }

    .maya-products-topbar {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .maya-product-sort {
        width: 100%;

        justify-content: space-between;
    }

    .maya-product-sort select {
        flex: 1;
    }

    .maya-product-image {
        height: 360px;
    }

    .maya-product-quick {
        transform: translateY(0);
    }
}

/* =========================================
   HERO
========================================= */

.maya-home-hero {
    position: relative;
}

.maya-hero-slide {
    min-height: 680px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    position: relative;
}

.maya-hero-slide::before {
    content: "";

    position: absolute;
    inset: 0;
}

.maya-hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;

    padding: 90px 0;
}

.maya-hero-content h1 {
    color: #000;
    line-height: 1.05;
    font-weight: 600;
    margin: 15px 0;
    font-size: 45px;
}

.maya-hero-content h1 em {
    display: block;

    color: #a8864d;

    font-style: italic;
}

.maya-hero-content p {
    max-width: 520px;
    margin-bottom: 25px;
}


/* HERO BUTTONS */

.maya-hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.maya-main-btn,
.maya-outline-btn,
.maya-outline-blue-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;
}

.maya-main-btn {
    background: #173f6b;

    color: #fff;

    box-shadow: 0 10px 25px rgba(232, 121, 22, .18);
}

.maya-main-btn:hover {
    color: #fff;

    background: #a8864d;

    transform: translateY(-3px);
}

.maya-outline-btn {
    border: 1px solid #173f6b;

    color: #173f6b;

    background: rgba(255, 255, 255, .35);
}

.maya-outline-btn:hover {
    color: #fff;

    background: #173f6b;
}


/* SLIDER */

.maya-slider-arrow {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #173f6b;

    background: rgba(255, 255, 255, .85);

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-indicators [data-bs-target] {
    width: 25px;
    height: 3px;

    border: 0;

    background-color: #173f6b;
}


/* =========================================
   HOME ABOUT
========================================= */

.maya-home-about {
    padding: 95px 0;

    background: #fffdf9;
}

.maya-home-about-image {
    height: 560px;

    position: relative;

    padding-right: 45px;
    padding-bottom: 35px;
}

.maya-home-about-image::before {
    content: "";

    position: absolute;

    right: 0;
    top: 35px;

    width: 65%;

    height: 85%;

    border: 1px solid #e7cda9;

    border-radius: 18px;

    z-index: 0;
}

.maya-home-about-image img {
    position: relative;

    z-index: 1;

    width: 90%;
    height: 100%;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(35, 45, 55, .13);
}

.maya-about-image-badge {
    position: absolute;

    z-index: 3;

    right: 15px;
    bottom: 15px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #173f6b;

    color: #fff;

    border: 7px solid #fffdf9;
}

.maya-about-image-badge strong {
    color: #f1a25b;



    font-size: 28px;
}

.maya-about-image-badge span {
    text-align: center;

    font-size: 9px;

    line-height: 1.4;
}


.maya-home-about-content h2 {
    color: #173f6b;
    font-size: 43px;

    line-height: 1.15;

    font-weight: 500;

    margin: 10px 0 20px;
}

.maya-home-about-content h2 em,
.maya-home-heading h2 em {
    color: #a8864d;

    font-style: italic;
}

.maya-home-about-content p {
    color: #7c8790;

    font-size: 14px;

    line-height: 1.8;
}

.maya-home-about-content .maya-about-lead {
    color: #526c7f;

    font-size: 16px;

    font-weight: 500;
}

/* =========================================
   MAYA BRAND INTRO
========================================= */

.maya-brand-intro {

    width: 100%;

    background: var(--light-bg);

    padding: 120px 20px 85px;

    text-align: center;

}


/* =========================================
   INNER
========================================= */

.maya-brand-intro-inner {

    max-width: 1200px;

    margin: 0 auto;

}


/* =========================================
   LOGO
========================================= */

.maya-brand-intro-logo {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;

}


.maya-brand-intro-logo img {

    width: auto;

    height: 120px;

    max-width: 180px;

    object-fit: contain;

    display: block;

}


/* =========================================
   BRAND LABEL
========================================= */

.maya-brand-intro-label {

    font-size: 17px;

    font-weight: 400;

    letter-spacing: 11px;

    color: #b28a4a;

    text-transform: uppercase;

    margin-bottom: 22px;

}


/* =========================================
   MAIN TITLE
========================================= */

.maya-brand-intro-title {

    margin: 0 auto;

    max-width: 1050px;

    color: #000;

    font-size: 34px;

    font-weight: 500;

    line-height: 1.35;

    letter-spacing: 0;

}


/* =========================================
   GOLD HIGHLIGHT
========================================= */

.maya-brand-intro-title span {

    color: #a8864d;

    font-weight: 500;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .maya-brand-intro {

        padding: 120px 20px 70px;

    }


    .maya-brand-intro-logo img {

        height: 105px;

    }


    .maya-brand-intro-label {

        font-size: 14px;

        letter-spacing: 7px;

    }


    .maya-brand-intro-title {

        font-size: 30px;

        line-height: 1.3;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .maya-brand-intro {

        padding: 50px 18px 60px;

    }


    .maya-brand-intro-logo {

        margin-bottom: 20px;

    }


    .maya-brand-intro-logo img {

        height: 90px;

        max-width: 150px;

    }


    .maya-brand-intro-label {

        font-size: 10px;

        letter-spacing: 5px;

        margin-bottom: 18px;

    }


    .maya-brand-intro-title {

        font-size: 25px;

        line-height: 1.3;

    }


    .desktop-break {

        display: none;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .maya-brand-intro {

        padding: 120px 15px 55px;

    }


    .maya-brand-intro-logo img {

        height: 78px;

    }


    .maya-brand-intro-label {

        font-size: 9px;

        letter-spacing: 3.5px;

    }


    .maya-brand-intro-title {

        font-size: 22px;

        line-height: 1.35;

    }

}

/* =========================================
   CUSTOM JEWELLERY
========================================= */

.maya-custom-jewellery {

    position: relative;

    background: var(--light-bg);

    padding: 100px 0;

    overflow: hidden;

}


/* =========================================
   IMAGE
========================================= */

.maya-custom-image {

    position: relative;

    height: 570px;

    overflow: hidden;
    border-radius: 18px;

}


.maya-custom-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;

    box-shadow: 0 20px 50px rgba(35, 45, 55, .13);

}


.maya-custom-image:hover img {

    transform: scale(1.04);


}


/* =========================================
   IMAGE CAPTION
========================================= */

.maya-custom-image-caption {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: rgba(255, 255, 255, 0.94);

    padding: 18px 24px;

    min-width: 210px;

}


.maya-custom-image-caption span {

    display: block;

    font-size: 10px;

    letter-spacing: 3px;

    color: var(--text-color);

    margin-bottom: 5px;

}


.maya-custom-image-caption strong {

    display: block;

    font-size: 23px;

    font-weight: 600;

    color: #111;

}


/* =========================================
   CONTENT
========================================= */

.maya-custom-content {

    padding-left: 35px;

    max-width: 600px;

}



/* =========================================
   HEADING
========================================= */

.maya-custom-content h2 {

    margin: 0 0 22px;

    font-size: 54px;

    line-height: 1.05;

    font-weight: 600;


}


.maya-custom-content h2 em {

    display: block;

    color: var(--text-color);

    font-style: italic;

    font-weight: 600;

}


/* =========================================
   TEXT
========================================= */

.maya-custom-lead {
    margin-bottom: 15px;

}

/* =========================================
   FEATURES
========================================= */

.maya-custom-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-bottom: 35px;

}


.maya-custom-feature {

    display: flex;

    gap: 13px;

}


.maya-custom-feature-icon {

    flex-shrink: 0;

    width: 43px;

    height: 43px;

    border: 1px solid #d8bd8c;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #173f6b;

    font-size: 17px;

}


.maya-custom-feature p {

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .maya-custom-jewellery {

        padding: 75px 0;

    }


    .maya-custom-image {

        height: 500px;

    }


    .maya-custom-content {

        padding-left: 0;

    }


    .maya-custom-content h2 {

        font-size: 46px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .maya-custom-jewellery {

        padding: 60px 0;

    }


    .maya-custom-image {

        height: 400px;

    }


    .maya-custom-image-caption {

        left: 15px;

        bottom: 15px;

        padding: 14px 18px;

    }


    .maya-custom-content {

        padding-left: 0;

    }


    .maya-custom-content h2 {

        font-size: 40px;

    }


    .maya-custom-lead {

        font-size: 20px;

    }


    .maya-custom-features {

        grid-template-columns: 1fr;

        gap: 18px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .maya-custom-image {

        height: 350px;

    }


    .maya-custom-content h2 {

        font-size: 36px;

    }


    .maya-custom-label {

        font-size: 9px;

        letter-spacing: 3px;

    }

}


/* =========================================
   PRODUCTS
========================================= */

.maya-home-products {
    padding: 90px 0;

    background: var(--light-bg);
}

.maya-home-heading {
    max-width: 650px;

    margin: 0 auto 42px;
}

.maya-home-heading h2 {
    color: #000;

    font-size: 48px;
    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -0.3px;

    margin: 9px 0 12px;
}


/* PRODUCT CARD */

.maya-home-product-card {
    background: #fff;

    border: 1px solid #eee4d8;

    border-radius: 17px;

    overflow: hidden;

    transition: .35s;
}

.maya-home-product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(39, 50, 60, .10);
}

.maya-home-product-image {
    height: 400px;

    position: relative;

    overflow: hidden;

    background: #f3ede3;
}

.maya-home-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.maya-home-product-card:hover .maya-home-product-image img {
    transform: scale(1.06);
}

.maya-home-product-image>span {
    position: absolute;

    z-index: 3;

    left: 15px;
    top: 15px;

    padding: 6px 10px;

    background: #e87916;

    color: #fff;

    border-radius: 20px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}

.maya-home-heart {
    position: absolute;

    z-index: 3;

    right: 14px;
    top: 14px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .95);

    color: #173f6b;
}

.maya-home-product-image>a {
    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 18px;

    transform: translate(-50%, 70px);

    opacity: 0;

    white-space: nowrap;

    padding: 10px 18px;

    border-radius: 30px;

    background: #fff;

    color: #173f6b;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition: .35s;
}

.maya-home-product-card:hover .maya-home-product-image>a {
    opacity: 1;

    transform: translate(-50%, 0);
}

.maya-home-product-image>a:hover {
    color: #fff;

    background: #e87916;
}

.maya-home-product-info {
    padding: 20px;
}

.maya-home-product-info small {
    color: #b4772f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.maya-home-product-info h3 {
    color: #173f6b;



    font-size: 19px;

    font-weight: 500;

    margin: 6px 0 10px;
}

.maya-home-product-info strong {
    color: #e87916;

    font-size: 15px;
}

.maya-products-button {
    margin-top: 35px;
}

.maya-outline-blue-btn {

    color: #fff;

    background: #173f6b;
}

.maya-outline-blue-btn:hover {
    color: #000;

    background: var(--text-color);
}


/* =========================================
   WHY CHOOSE US
========================================= */

.maya-home-why {
    padding: 90px 0;

    background: var(--light-bg);
}

.maya-home-feature {
    padding: 30px 20px;

    text-align: center;

    border-right: 1px solid #eee5da;
}

.maya-feature-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #173f6b;

    background: #fff3e3;

    font-size: 22px;

    transition: .3s;
}

.maya-home-feature:hover .maya-feature-icon {
    color: #fff;

    background: var(--text-color);

    transform: translateY(-4px);
}

.maya-home-feature p {
    margin: 0 auto;

    max-width: 220px;
}


/* =========================================
   COLLECTION BANNER
========================================= */

.maya-collection-banner {
    min-height: 480px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        url("../images/slider/slider.png") center / cover no-repeat;
}

.maya-collection-overlay {
    position: absolute;

    inset: 0;

    background: #173f6b61;
}

.maya-collection-content {
    position: relative;

    z-index: 2;

    max-width: 580px;
}

.maya-collection-content h2 {
    font-size: 48px;

    line-height: 1.1;

    font-weight: 500;

    margin: 10px 0;
}

.maya-collection-content h2 em {
    display: block;

    color: var(--text-color);

    font-style: italic;
}

.maya-collection-content p {
    margin-bottom: 22px;
}


/* =========================================
   GALLERY
========================================= */

.maya-home-gallery {
    padding: 90px 0;

    background: var(--light-bg);
}

.maya-home-gallery-item {
    height: 330px;

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    cursor: pointer;
}

.maya-home-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.maya-home-gallery-item:hover img {
    transform: scale(1.08);
}

.maya-home-gallery-item>div {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(23, 63, 107, .45);

    opacity: 0;

    transition: .35s;
}

.maya-home-gallery-item:hover>div {
    opacity: 1;
}

.maya-home-gallery-item i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #173f6b;

    background: #fff;
}


/* =========================================
   CTA
========================================= */

.maya-home-cta {
    padding: 90px 20px;

    background: var(--light-bg);

    text-align: center;
}

.maya-home-cta-content {
    max-width: 700px;

    margin: auto;
}

.maya-home-cta-content h2 {
    font-size: 45px;

    font-weight: 500;

    margin: 10px 0 12px;
}

.maya-home-cta-content h2 em {
    color: var(--text-color);

    font-style: italic;
}

.maya-home-cta-content p {
    margin-bottom: 24px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .maya-hero-slide {
        min-height: 600px;
    }

    .maya-home-about,
    .maya-home-products,
    .maya-home-why,
    .maya-home-gallery {
        padding: 65px 0;
    }

    .maya-home-about-image {
        height: 500px;
    }

    .maya-home-feature {
        border-right: 0;
    }

    .maya-home-product-image {
        height: 350px;
    }

    .maya-home-gallery-item {
        height: 300px;
    }

}


@media (max-width: 767px) {

    .maya-hero-slide {
        min-height: 650px;

        background-position: 65% center;
    }

    .maya-hero-slide::before {
        background:
            linear-gradient(90deg,
                rgba(255, 250, 242, .96),
                rgba(255, 250, 242, .72));
    }

    .maya-hero-content {
        padding: 60px 0;
    }

    .maya-hero-content h1 {
        font-size: 43px;
    }

    .maya-home-about-image {
        height: 420px;

        padding-right: 20px;
    }

    .maya-home-about-image img {
        width: 94%;
    }

    .maya-about-image-badge {
        width: 100px;
        height: 100px;
    }

    .maya-home-about-content h2,
    .maya-home-heading h2 {
        font-size: 34px;
    }

    .maya-home-product-image {
        height: 390px;
    }

    .maya-home-product-image>a {
        opacity: 1;

        transform: translate(-50%, 0);
    }

    .maya-collection-banner {
        min-height: 450px;
    }

    .maya-collection-content h2 {
        font-size: 37px;
    }

    .maya-home-gallery-item {
        height: 350px;
    }

    .maya-home-cta-content h2 {
        font-size: 35px;
    }

}

/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.maya-product-details-page {
    padding: 35px 0 90px;
    background: var(--light-bg);
}


/* BREADCRUMB */

.maya-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 35px;

    color: #8a9298;

    font-size: 12px;
}

.maya-product-breadcrumb a {
    color: #173f6b;
    text-decoration: none;
}

.maya-product-breadcrumb i {
    font-size: 9px;
    color: #b4772f;
}


/* =========================================
   MAIN IMAGE
========================================= */

.maya-product-main-image {
    height: 650px;

    position: relative;

    overflow: hidden;

    background: var(--light-bg);

    border-radius: 18px;
}

.maya-product-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.maya-product-main-image:hover img {
    transform: scale(1.025);
}


/* BADGE */

.maya-detail-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    padding: 8px 13px;

    border-radius: 20px;

    background: #e87916;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* WISHLIST */

.maya-detail-wishlist {
    position: absolute;

    right: 18px;
    top: 18px;

    z-index: 3;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .95);

    color: #173f6b;

    font-size: 17px;

    transition: .3s;
}

.maya-detail-wishlist:hover {
    color: #fff;
    background: #e87916;
}


/* ZOOM */

.maya-image-zoom {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 3;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .9);

    color: #173f6b;
}


/* =========================================
   THUMBNAILS
========================================= */

.maya-product-thumbnails {
    display: flex;

    gap: 13px;

    margin-top: 14px;
}

.maya-thumb {
    width: 92px;
    height: 92px;

    padding: 0;

    overflow: hidden;

    border: 1px solid #e8ded2;

    border-radius: 10px;

    background: #f5eee5;

    cursor: pointer;

    transition: .3s;
}

.maya-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.maya-thumb.active {
    border: 2px solid #e87916;
}

.maya-thumb:hover {
    border-color: #b4772f;
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.maya-product-detail-info {
    padding: 8px 0;
}

.maya-detail-category {
    color: #e87916;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.maya-product-detail-info h1 {
    color: #000;
    line-height: 1.15;

    font-weight: 500;

    margin: 10px 0 15px;
}


/* RATING */

.maya-detail-rating {
    display: flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 20px;

    border-bottom: 1px solid #eee5db;

    font-size: 12px;

    color: #687984;
}

.maya-stars {
    color: var(--text-color);

    letter-spacing: 2px;
}

.maya-detail-rating a {
    color: #173f6b;

    text-decoration: underline;
}


/* PRICE */

.maya-detail-price {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 22px 0 15px;
}

.maya-detail-price strong {
    color: #173f6b;

    font-size: 28px;
}

.maya-detail-price del {
    color: #9ca2a6;

    font-size: 14px;
}

.maya-detail-price span {
    padding: 5px 9px;

    border-radius: 5px;

    color: #e87916;

    background: #fff0df;

    font-size: 10px;

    font-weight: 700;
}


/* DESCRIPTION */

.maya-detail-short-description {
    color: #727f88;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================================
   OFFER
========================================= */

.maya-detail-offer {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border: 1px dashed #e4c79f;

    border-radius: 10px;

    background: #fff9ef;

    margin-bottom: 23px;
}

.maya-offer-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #fff;

    background: #e87916;
}

.maya-detail-offer strong {
    color: #173f6b;

    font-size: 12px;
}

.maya-detail-offer p {
    margin: 3px 0 0;

    color: #7c8790;

    font-size: 11px;
}


/* =========================================
   QUANTITY
========================================= */

.maya-detail-option {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}

.maya-detail-option label {
    color: #173f6b;

    font-size: 12px;

    font-weight: 600;
}

.maya-quantity-box {
    display: flex;

    align-items: center;

    height: 40px;

    border: 1px solid #ded7ce;

    border-radius: 6px;

    overflow: hidden;
}

.maya-quantity-box button {
    width: 38px;
    height: 100%;

    border: 0;

    background: #fff;

    color: #173f6b;

    font-size: 17px;
}

.maya-quantity-box input {
    width: 42px;
    height: 100%;

    text-align: center;

    border: 0;

    outline: 0;

    color: #173f6b;

    font-size: 13px;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.maya-detail-actions {
    display: flex;

    gap: 10px;

    margin-bottom: 25px;
}

.maya-add-cart,
.maya-buy-now {
    height: 52px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;
}

.maya-add-cart {
    flex: 1;

    border: 1px solid #173f6b;

    background: transparent;

    color: #173f6b;
}

.maya-add-cart:hover {
    color: #fff;

    background: #173f6b;
}

.maya-buy-now {
    flex: 1.2;

    border: 1px solid #e87916;

    background: #173f6b;

    color: #fff;
}

.maya-buy-now:hover {
    background: var(--text-color);

    border-color: var(--text-color);
    color: #fff;

    transform: translateY(-2px);
}

.maya-buy-now a {
    color: #fff;
    text-decoration: none;
}


/* =========================================
   DELIVERY
========================================= */

.maya-delivery-box {
    border-top: 1px solid #eee5db;

    border-bottom: 1px solid #eee5db;

    padding: 8px 0;
}

.maya-delivery-row {
    display: flex;

    gap: 14px;

    padding: 12px 0;
}

.maya-delivery-row>i {
    color: #b4772f;

    font-size: 19px;
}

.maya-delivery-row strong {
    color: #173f6b;

    font-size: 12px;
}

.maya-delivery-row p {
    color: #8a9298;

    font-size: 10px;

    margin: 3px 0 0;
}


/* =========================================
   PINCODE
========================================= */

.maya-pincode {
    margin-top: 20px;
}

.maya-pincode label {
    display: block;

    color: #173f6b;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 7px;
}

.maya-pincode>div {
    display: flex;

    border: 1px solid #ddd5ca;

    border-radius: 6px;

    overflow: hidden;
}

.maya-pincode input {
    flex: 1;

    border: 0;

    outline: 0;

    padding: 12px;

    font-size: 11px;

    background: #fff;
}

.maya-pincode button {
    width: 80px;

    border: 0;

    color: #173f6b;

    background: #f8efe3;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================
   EXTRA PRODUCT INFORMATION
========================================= */

.maya-product-extra {
    margin-top: 80px;

    padding-top: 55px;

    border-top: 1px solid #ebe3d9;
}


/* TABS */

.maya-product-tabs {
    border-top: 1px solid #e8e0d6;
}

.maya-tab-item {
    border-bottom: 1px solid #e8e0d6;
}

.maya-tab-heading {
    width: 100%;

    padding: 20px 5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border: 0;

    background: transparent;

    color: #173f6b;



    font-size: 18px;

    text-align: left;
}

.maya-tab-heading i {
    color: #b4772f;

    font-size: 13px;

    transition: .3s;
}

.maya-tab-content {
    display: none;

    padding: 0 5px 22px;

    color: #7b858c;

    font-size: 13px;

    line-height: 1.8;
}

.maya-tab-item.active .maya-tab-content {
    display: block;
}

.maya-tab-item.active .maya-tab-heading i {
    transform: rotate(180deg);
}

.maya-tab-content p {
    margin-bottom: 9px;
}

.maya-tab-content ul {
    padding-left: 20px;

    margin: 0;
}

.maya-tab-content li {
    padding: 5px 0;
}


/* =========================================
   TRUST CARD
========================================= */

.maya-trust-card {
    padding: 35px;

    border-radius: 17px;

    background: #f8f0e5;

    border: 1px solid #ead8c1;
}

.maya-trust-card>span {
    color: #e87916;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.maya-trust-card h3 {
    color: #173f6b;



    font-size: 27px;

    font-weight: 500;

    line-height: 1.2;

    margin: 10px 0 13px;
}

.maya-trust-card h3 em {
    color: #b4772f;

    font-style: italic;
}

.maya-trust-card>p {
    color: #7b858c;

    font-size: 12px;

    line-height: 1.7;
}

.maya-trust-points {
    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #e5d5c1;
}

.maya-trust-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #173f6b;

    font-size: 11px;

    padding: 7px 0;
}

.maya-trust-points i {
    color: #e87916;

    font-size: 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .maya-product-main-image {
        height: 560px;
    }

    .maya-product-detail-info {
        padding-top: 20px;
    }

    .maya-product-extra {
        margin-top: 55px;
    }

}


@media (max-width: 767px) {

    .maya-product-details-page {
        padding: 25px 0 60px;
    }

    .maya-product-breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
    }

    .maya-product-main-image {
        height: 450px;
    }

    .maya-product-detail-info h1 {
        font-size: 34px;
    }

    .maya-product-thumbnails {
        gap: 8px;
    }

    .maya-thumb {
        width: 70px;
        height: 70px;
    }

    .maya-detail-actions {
        flex-direction: column;
    }

    .maya-add-cart,
    .maya-buy-now {
        width: 100%;
    }

    .maya-trust-card {
        margin-top: 25px;
    }

}

/* =====================================================
   MAYA REVIEWS SLIDER
===================================================== */

.maya-reviews-section {
    padding: 85px 0;
    background: var(--light-bg);
    overflow: hidden;
}

/* Heading */
.maya-reviews-heading {
    max-width: 650px;
    margin: 0 auto 48px;
}

.maya-review-subtitle {
    color: #e87916;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.maya-reviews-heading h2 {
    margin: 10px 0;
    color: #173f6b;
    font-size: 42px;
    font-weight: 500;
}

.maya-reviews-heading h2 em {
    color: #b4772f;
}

.maya-reviews-heading p {
    margin: 0;
    color: #7d878e;
    font-size: 12px;
    line-height: 1.8;
}

/* =====================================================
   SLIDER WRAPPER
===================================================== */

.maya-review-slider-wrap {
    position: relative;
    display: flex;

    align-items: center;

    gap: 20px;

}


/* Slider */

.maya-review-slider {

    width: 100%;

    overflow: hidden;

}


.maya-review-track {

    display: flex;

    transition: transform .55s cubic-bezier(.4, 0, .2, 1);

}


/* Slide */

.maya-review-slide {

    flex: 0 0 33.333333%;

    padding: 0 10px;

}


/* =====================================================
   REVIEW CARD
===================================================== */

.maya-review-card {

    height: 100%;

    min-height: 285px;

    padding: 25px;

    border: 1px solid #e9dfd3;

    border-radius: 15px;

    background: #fff;

    transition: .35s ease;

}

.maya-review-card:hover {

    transform: translateY(-5px);

    border-color: #d8c2a4;

    box-shadow:
        0 18px 45px rgba(23, 63, 107, .08);

}


/* User */

.maya-review-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;

}


.maya-review-user {

    display: flex;

    align-items: center;

    gap: 11px;

}


.maya-review-avatar {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f7e8d6;

    color: #173f6b;

    font-size: 14px;

    font-weight: 700;

}


.maya-review-user h4 {

    margin: 0;

    color: #173f6b;

    font-size: 16px;

    font-weight: 700;

}


.maya-review-user span {

    display: block;

    margin-top: 3px;

    color: #e87916;

    font-size: 9px;

}


.maya-review-date {

    color: #999;

    font-size: 8px;

    white-space: nowrap;

}


/* Stars */

.maya-review-stars {

    margin-top: 19px;

    color: #e87916;

    font-size: 13px;

    letter-spacing: 2px;

}


/* Title */

.maya-review-card h5 {

    margin: 11px 0 8px;

    color: #173f6b;

    font-size: 14px;

    font-weight: 600;

}


/* Text */

.maya-review-card p {

    margin: 0;

    color: #78838a;

    font-size: 13px;

    line-height: 1.8;

}


/* Verified */

.maya-review-verified {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 17px;

    padding-top: 13px;

    border-top: 1px solid #f0e9e0;

    color: #72818a;

    font-size: 9px;

}


.maya-review-verified i {

    color: #e87916;

}


/* =====================================================
   ARROWS
===================================================== */

.maya-review-arrow {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dfd2c3;

    border-radius: 50%;

    background: #fff;

    color: #173f6b;

    font-size: 14px;

    cursor: pointer;

    transition: .3s;

    z-index: 2;

}


.maya-review-arrow:hover {

    background: #e87916;

    border-color: #e87916;

    color: #fff;

    transform: scale(1.05);

}


.maya-review-arrow:disabled {

    opacity: .35;

    cursor: not-allowed;

    transform: none;

}


/* =====================================================
   DOTS
===================================================== */

.maya-review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 30px;
}

.maya-review-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9cec0;
    transition: .3s;
}

.maya-review-dot.active {

    width: 24px;
    border-radius: 20px;
    background: #e87916;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .maya-review-slide {
        flex: 0 0 50%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .maya-reviews-section {
        padding: 60px 0;
    }

    .maya-reviews-heading {
        margin-bottom: 35px;
    }

    .maya-reviews-heading h2 {
        font-size: 34px;
    }

    .maya-review-slider-wrap {
        gap: 8px;
    }

    .maya-review-slide {
        flex: 0 0 100%;
        padding: 0 4px;
    }

    .maya-review-arrow {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 12px;
    }

    .maya-review-card {
        min-height: 275px;
        padding: 21px;
    }

}

/*5670*/
/* =========================================================
   MAYA ORNAMENTS PAGE LOADER
========================================================= */

#mayaLoader {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* Loader hidden state */

#mayaLoader.maya-loader-hidden {

    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}


/* Inner */

.maya-loader-inner {

    position: relative;

    width: 280px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


/* Logo */

.maya-loader-logo {

    width: 230px;
    height: auto;

    display: block;

    object-fit: contain;

    animation: mayaLogoAnimation 1.8s ease-in-out infinite;
}


/* Ring */

.maya-loader-ring {

    width: 42px;
    height: 42px;

    margin-top: 25px;

    border-radius: 50%;

    border: 3px solid rgba(0, 65, 130, 0.12);

    border-top-color: #064d91;

    border-right-color: #064d91;

    animation: mayaLoaderRotate 0.8s linear infinite;
}


/* Logo animation */

@keyframes mayaLogoAnimation {

    0% {

        transform: scale(0.95);

        opacity: 0.7;

    }

    50% {

        transform: scale(1);

        opacity: 1;

    }

    100% {

        transform: scale(0.95);

        opacity: 0.7;

    }

}


/* Ring animation */

@keyframes mayaLoaderRotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}


/* Mobile */

@media (max-width: 576px) {

    .maya-loader-inner {

        width: 220px;

    }

    .maya-loader-logo {

        width: 180px;

    }

    .maya-loader-ring {

        width: 34px;
        height: 34px;

        margin-top: 20px;

        border-width: 2px;

    }

}

/* =========================================================
   MAYA CATEGORY SHOWCASE
   PREMIUM LIGHT / DARK JEWELLERY THEME
========================================================= */

.maya-category-showcase {
    position: relative;
    padding: 120px 0;
    background: var(--light-bg);
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.maya-category-heading {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.maya-category-eyebrow {
    display: inline-block;

    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #a8864d;
}

.maya-category-heading h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;

    line-height: 1.05;

    color: #171719;
}

.maya-category-heading h2 em {
    color: #a8864d;
    font-style: italic;
}

.maya-category-heading p {
    max-width: 620px;

    margin: 22px auto 0;

    font-size: 20px;

    line-height: 1.4;

    color: #000;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.maya-category-list {
    display: flex;
    flex-direction: column;

    gap: 110px;
}


/* =========================================================
   CATEGORY ITEM
========================================================= */

.maya-category-item {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    min-height: 520px;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.maya-category-image-wrap {
    position: relative;

    padding: 0 50px 50px 0;
}

.maya-category-image {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    background: #ebe7df;
}

.maya-category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.maya-category-item:hover .maya-category-image img {
    transform: scale(1.045);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.maya-category-image-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.48),
            transparent 45%);

    pointer-events: none;
}

.maya-category-image-overlay span {
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #ffffff;
}


/* =========================================================
   NUMBER
========================================================= */

.maya-category-number {
    position: absolute;

    right: 5px;
    bottom: 5px;

    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #151515;

    border: 1px solid rgba(212, 175, 106, 0.45);
    font-size: 38px;

    color: #d4af6a;

    z-index: 2;
}


/* =========================================================
   CONTENT
========================================================= */

.maya-category-content {
    max-width: 700px;

    padding: 30px 30px;
}

.maya-category-small-title {
    display: block;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #a8864d;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.maya-category-content h3 {
    margin: 0;

    font-size: clamp(44px, 5vw, 70px);

    font-weight: 500;

    line-height: 0.98;

    color: #171719;
}


/* =========================================================
   GOLD LINE
========================================================= */

.maya-category-line {
    width: 65px;
    height: 1px;

    margin: 28px 0;

    background: #b9965b;

    transition:
        width 0.4s ease;
}

.maya-category-item:hover .maya-category-line {
    width: 110px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.maya-category-content p {

    font-size: 22px;

    line-height: 1.4;

    color: #000;
}


/* =========================================================
   LINK
========================================================= */

.maya-category-link {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding-bottom: 8px;

    border-bottom: 1px solid #b9965b;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #252525 !important;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.maya-category-link i {
    font-size: 16px;

    color: #a8864d;

    transition:
        transform 0.3s ease;
}

.maya-category-link:hover {
    color: #a8864d !important;

    gap: 17px;
}

.maya-category-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   ALTERNATING LAYOUT
========================================================= */

/*
   Normal:

   IMAGE | CONTENT

   Reverse:

   CONTENT | IMAGE
*/

.maya-category-reverse .maya-category-image-wrap {
    order: 2;

    padding:
        0 0 50px 50px;
}

.maya-category-reverse .maya-category-content {
    order: 1;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.maya-category-empty {
    padding: 80px 20px;

    text-align: center;

    border: 1px solid #ddd7cc;
}

.maya-category-empty i {
    display: block;

    margin-bottom: 15px;

    font-size: 40px;

    color: #b9965b;
}

.maya-category-empty p {
    margin: 0;

    color: #77736d;
}


/* =========================================================
   DARK THEME
========================================================= */

body.maya-dark-theme .maya-category-showcase {

    background: #0c0c0d;

}

body.maya-dark-theme .maya-category-heading h2 {

    color: #f3eee5;

}

body.maya-dark-theme .maya-category-heading p {

    color: #9e9a92;

}

body.maya-dark-theme .maya-category-image {

    background: #181818;

}

body.maya-dark-theme .maya-category-content h3 {

    color: #f3eee5;

}

body.maya-dark-theme .maya-category-content p {

    color: #9e9a92;

}

body.maya-dark-theme .maya-category-link {

    color: #eee8dd !important;

}

body.maya-dark-theme .maya-category-number {

    background: #111111;

}

body.maya-dark-theme .maya-category-empty {

    border-color:
        rgba(212, 175, 106, 0.2);

}

body.maya-dark-theme .maya-category-empty p {

    color: #9e9a92;

}


/* =========================================================
   DARK THEME - ALTERNATING SECTION DETAILS
========================================================= */

body.maya-dark-theme .maya-category-showcase::before {

    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    top: 20%;
    left: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(212, 175, 106, 0.05),
            transparent 70%);

    pointer-events: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .maya-category-showcase {
        padding: 90px 0;
    }

    .maya-category-heading {
        margin-bottom: 60px;
    }

    .maya-category-list {
        gap: 80px;
    }

    .maya-category-item {
        grid-template-columns: 1fr 1fr;

        min-height: 430px;
    }

    .maya-category-image {
        height: 430px;
    }

    .maya-category-content {
        padding: 30px;
    }

    .maya-category-content h3 {
        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .maya-category-showcase {
        padding: 70px 0;
    }

    .maya-category-heading {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .maya-category-heading h2 {
        font-size: 43px;
    }

    .maya-category-heading p {
        font-size: 13px;
    }


    .maya-category-list {
        gap: 65px;
    }


    /*
       On mobile every category becomes:

       IMAGE
       CONTENT

       This is much cleaner.
    */

    .maya-category-item,
    .maya-category-reverse {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .maya-category-image-wrap,
    .maya-category-reverse .maya-category-image-wrap {

        order: 1;

        width: 100%;

        padding: 0 25px 25px 0;
    }


    .maya-category-image {

        height: 400px;

    }


    .maya-category-content,
    .maya-category-reverse .maya-category-content {

        order: 2;

        width: 100%;

        padding:
            15px 25px 0;
    }


    .maya-category-content h3 {

        font-size: 46px;

    }


    .maya-category-number {

        width: 75px;
        height: 75px;

        font-size: 30px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .maya-category-image {
        height: 330px;
    }

    .maya-category-content h3 {
        font-size: 40px;
    }

}