/* CemarMarbleTheme - Premium Responsive Style System */
:root {
    --cmt-font: 'Roboto', sans-serif;
    --cmt-white: #ffffff;
    --cmt-black: #0d0d0d;
    --cmt-grey-light: #f5f5f7;
    --cmt-grey-dark: #1a1a1a;
    --cmt-glass-bg: rgba(13, 13, 13, 0.85);
    --cmt-glass-border: rgba(255, 255, 255, 0.1);
    --cmt-accent: #0056ff;
    /* Elegant warm gold */
    --cmt-transition-smooth: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s;
}

/* Global Headings Font */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Tiro Devanagari Sanskrit', Georgia, serif;
}

/* Category Page Typography Customs */
.cmt-cat-title {
    font-family: 'Tiro Devanagari Sanskrit', serif !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    color: #1a1a1a;
    line-height: 1.2;
}

.cmt-cat-link {
    font-family: 'Roboto', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.cmt-cat-link:hover {
    opacity: 0.7;
}

.cmt-product-title {
    font-family: 'Tiro Devanagari Sanskrit', serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: #8E8176 !important;
    text-align: center;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.group:hover .cmt-product-title {
    color: #61564c !important;
}

@media (max-width: 640px) {
    .cmt-cat-title {
        font-size: 28px !important;
    }
    .cmt-cat-link {
        font-size: 16px !important;
    }
    .cmt-product-title {
        font-size: 22px !important;
    }
}

.cmt-body-lock {
    overflow: hidden !important;
}

body {
    background-color: #ffffff !important;
}

/* Base Hero Layout */
.cmt-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--cmt-black);
    font-family: var(--cmt-font);
}

/* Compact Hero (For Inner Pages & PageDetail - 600px Height) */
.cmt-hero.cmt-hero-compact {
    height: 600px !important;
    min-height: 600px !important;
    max-height: 600px !important;
}

.cmt-hero.cmt-hero-compact .cmt-video-container iframe,
.cmt-hero.cmt-hero-compact .cmt-video-container video,
.cmt-hero.cmt-hero-compact .cmt-video-container img {
    min-height: 600px !important;
    height: 600px !important;
    object-fit: cover !important;
}

/* Image Hero (800px Height for Template 2) */
.cmt-hero.cmt-hero-image,
.cmt-hero.cmt-hero-compact.cmt-hero-image {
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
}

.cmt-hero.cmt-hero-image .cmt-video-container iframe,
.cmt-hero.cmt-hero-image .cmt-video-container video,
.cmt-hero.cmt-hero-image .cmt-video-container img,
.cmt-hero.cmt-hero-compact.cmt-hero-image .cmt-video-container iframe,
.cmt-hero.cmt-hero-compact.cmt-hero-image .cmt-video-container video,
.cmt-hero.cmt-hero-compact.cmt-hero-image .cmt-video-container img {
    min-height: 800px !important;
    height: 800px !important;
    object-fit: cover !important;
}

.cmt-hero.cmt-hero-compact .relative.z-10 {
    padding-top: 4rem !important;
}

/* Video Background Layer */
.cmt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-color: var(--cmt-black);
}

.cmt-video-container iframe,
.cmt-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    border: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: cover;
}

.cmt-video-container.cmt-video-loaded iframe,
.cmt-video-container.cmt-video-loaded video {
    opacity: 1;
}


/* Dark elegant overlay */
.cmt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Header & Navigation */
.cmt-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    padding: 30px 40px;
    box-sizing: border-box;
}

/* Minimal Header Variant (Template 3: No Hero) */
.cmt-header.cmt-header-minimal {
    position: relative;
    background-color: #0b0f19;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cmt-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Left controls: Burger + Language */
.cmt-nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cmt-burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 13px 8px;
    box-sizing: border-box;
    z-index: 1000;
    pointer-events: auto;
}

.cmt-burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--cmt-white);
    border-radius: 2px;
    transition: var(--cmt-transition-smooth);
    pointer-events: none;
}

.cmt-burger-btn:hover .cmt-burger-line:nth-child(1) {
    transform: translateY(-1px);
}

.cmt-burger-btn:hover .cmt-burger-line:nth-child(3) {
    transform: translateY(1px);
}

/* Language Switch Dropdown */
.cmt-lang-dropdown {
    position: relative;
    display: inline-block;
}

.cmt-lang-switch-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--cmt-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--cmt-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--cmt-transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
}

.cmt-lang-switch-btn:hover {
    opacity: 1;
    color: var(--cmt-accent);
}

.cmt-lang-arrow {
    font-size: 10px;
    transition: var(--cmt-transition-smooth);
    display: inline-block;
}

.cmt-lang-dropdown.cmt-active .cmt-lang-arrow {
    transform: rotate(180deg);
}

.cmt-lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #111111;
    /* Opaque solid dark background */
    border: 1px solid var(--cmt-glass-border);
    border-radius: 6px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--cmt-transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.cmt-lang-dropdown.cmt-active .cmt-lang-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cmt-lang-item {
    font-family: var(--cmt-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--cmt-white);
    text-decoration: none;
    padding: 8px 16px;
    text-align: left;
    transition: var(--cmt-transition-smooth);
    display: block;
}

.cmt-lang-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--cmt-accent);
    padding-left: 20px;
}


/* Center Logo */
.cmt-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cmt-logo-img {
    height: 150px;
    width: auto;
    transition: var(--cmt-transition-smooth);
    filter: brightness(0) invert(1);
    /* Forces it to white for premium dark overlay look */
}

/* Right Link */
.cmt-nav-right {
    display: flex;
    align-items: center;
}

.cmt-btn-3d {
    font-family: var(--cmt-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--cmt-white);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 5px 0;
    background: none;
    transition: var(--cmt-transition-smooth);
    opacity: 0.85;
}

.cmt-btn-3d:hover {
    opacity: 1;
    color: var(--cmt-accent);
}

/* Tour Dropdown */
.cmt-tour-dropdown {
    position: relative;
    display: inline-block;
}

.cmt-tour-dropdown-btn {
    font-family: var(--cmt-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--cmt-white);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 5px 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--cmt-transition-smooth);
    opacity: 0.85;
}

.cmt-tour-dropdown-btn:hover {
    opacity: 1;
    color: var(--cmt-accent);
}

.cmt-tour-arrow {
    font-size: 10px;
    transition: var(--cmt-transition-smooth);
    display: inline-block;
}

.cmt-tour-dropdown.cmt-active .cmt-tour-arrow {
    transform: rotate(180deg);
}

.cmt-tour-list {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #111111;
    border: 1px solid var(--cmt-glass-border);
    border-radius: 6px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--cmt-transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cmt-tour-dropdown.cmt-active .cmt-tour-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cmt-tour-item {
    font-family: var(--cmt-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--cmt-white);
    text-decoration: none;
    padding: 8px 16px;
    text-align: left;
    transition: var(--cmt-transition-smooth);
    display: block;
    white-space: nowrap;
}

.cmt-tour-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--cmt-accent);
    padding-left: 20px;
}

.cmt-hero-tour-dropdown.cmt-active .cmt-hero-tour-list {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.cmt-hero-tour-dropdown.cmt-active svg {
    transform: rotate(180deg);
}


/* Floating Elements: WhatsApp on bottom left */
.cmt-whatsapp-float {
    position: absolute;
    bottom: 90px;
    left: 40px;
    z-index: 5;
    transition: var(--cmt-transition-smooth);
}

.cmt-whatsapp-icon {
    width: 48px;
    height: 48px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--cmt-transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.cmt-whatsapp-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--cmt-white);
}

.cmt-whatsapp-icon:hover {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Bottom Marquee Bar */
.cmt-marquee-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--cmt-black);
    color: var(--cmt-white);
    padding: 18px 0;
    z-index: 5;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cmt-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: cmt-marquee 10s linear infinite;
    gap: 40px;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cmt-marquee-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.9;
}

@keyframes cmt-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Premium Drawer Menu Overlay */
.cmt-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    /* Opaque background is highly performant and avoids backdrop-filter lag */
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}


.cmt-menu-overlay.cmt-active {
    opacity: 1;
    pointer-events: auto;
}

/* Close Button inside Overlay */
.cmt-close-btn {
    position: absolute;
    top: 35px;
    left: 40px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cmt-close-icon {
    position: relative;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.cmt-close-icon::before,
.cmt-close-icon::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--cmt-white);
    transition: var(--cmt-transition-smooth);
}

.cmt-close-icon::before {
    transform: rotate(45deg);
}

.cmt-close-icon::after {
    transform: rotate(-45deg);
}

.cmt-close-btn:hover .cmt-close-icon::before {
    transform: rotate(135deg);
}

.cmt-close-btn:hover .cmt-close-icon::after {
    transform: rotate(45deg);
}

/* Navigation Links Container */
.cmt-menu-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
    box-sizing: border-box;
}

.cmt-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cmt-menu-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmt-menu-overlay.cmt-active .cmt-menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Dynamic slide-in delays */
.cmt-menu-overlay.cmt-active .cmt-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.cmt-menu-overlay.cmt-active .cmt-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.cmt-menu-overlay.cmt-active .cmt-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.cmt-menu-overlay.cmt-active .cmt-menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.cmt-menu-link {
    font-family: var(--cmt-font);
    font-size: 42px;
    font-weight: 300;
    color: var(--cmt-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    transition: var(--cmt-transition-smooth);
}

.cmt-menu-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--cmt-accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.cmt-menu-link:hover {
    color: var(--cmt-accent);
    transform: translateX(10px);
}

.cmt-menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Accordion Submenu Styles */
.cmt-has-submenu>.cmt-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.cmt-has-submenu>.cmt-menu-link::before {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--cmt-transition-smooth);
}

.cmt-has-submenu.cmt-open>.cmt-menu-link::before {
    content: '-';
    transform: rotate(180deg);
    color: var(--cmt-accent);
}

.cmt-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    padding-left: 20px;
}

.cmt-has-submenu.cmt-open .cmt-submenu {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.cmt-submenu-link {
    font-family: var(--cmt-font);
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--cmt-transition-smooth);
}

.cmt-submenu-link:hover {
    color: var(--cmt-accent);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .cmt-header {
        padding: 20px;
    }

    .cmt-logo-img {
        height: 50px;
    }

    .cmt-menu-link {
        font-size: 32px;
    }

    .cmt-submenu-link {
        font-size: 18px;
    }

    .cmt-play-btn {
        width: 75px;
        height: 75px;
    }
}

.cmt-mobile-tour-item {
    display: none;
}

@media (max-width: 768px) {
    .cmt-mobile-tour-item {
        display: block;
    }

    .cmt-nav-right {
        display: none;
        /* Hide 3D view link on mobile navbar just like modern aesthetic brands do */
    }

    .cmt-whatsapp-float {
        bottom: 80px;
        left: 20px;
    }

    .cmt-whatsapp-icon,
    .cmt-whatsapp-icon svg {
        width: 38px;
        height: 38px;
    }

    .cmt-menu-link {
        font-size: 28px;
    }

    .cmt-play-btn {
        width: 65px;
        height: 65px;
    }

    .cmt-marquee-content {
        animation-duration: 8s;
    }

    .cmt-close-btn {
        top: 20px;
        left: 20px;
    }

    .cmt-burger-btn {
        z-index: 1005;
    }
}

/* Catalog Section Layout */
.cmt-catalog-section {
    padding: 100px 20px 40px 20px;
    background-color: var(--cmt-white);
    text-align: center;
}

.cmt-catalog-mockup-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.cmt-catalog-img {
    max-width: 96%;
    width: 1400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.28)) drop-shadow(0 45px 65px rgba(0, 0, 0, 0.18));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, filter;
}

.cmt-catalog-img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.33)) drop-shadow(0 55px 80px rgba(0, 0, 0, 0.22));
}

.cmt-catalog-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.cmt-catalog-title {
    font-family: var(--cmt-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--cmt-black);
    margin-bottom: 25px;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.cmt-catalog-form {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.cmt-catalog-input-group {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cmt-catalog-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 14px 24px;
    font-family: var(--cmt-font);
    font-size: 15px;
    color: var(--cmt-black);
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cmt-catalog-input:focus {
    border-color: var(--cmt-accent);
    box-shadow: 0 0 0 4px rgba(65, 97, 222, 0.1);
}

.cmt-catalog-input.cmt-input-error {
    border-color: #e03131;
    box-shadow: 0 0 0 4px rgba(224, 49, 49, 0.1);
}

.cmt-input-error-msg {
    font-family: var(--cmt-font);
    font-size: 12px;
    color: #e03131;
    margin-top: 6px;
    margin-left: 16px;
    display: none;
    animation: cmt-fade-in-up 0.3s ease;
}

.cmt-catalog-submit-btn {
    background-color: var(--cmt-black);
    color: var(--cmt-white);
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 40px;
    border: 1px solid var(--cmt-black);
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmt-catalog-submit-btn:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-1px);
}

.cmt-catalog-submit-btn.cmt-btn-loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.cmt-btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: cmt-spin 0.75s linear infinite;
    margin-right: 8px;
}

@keyframes cmt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Popup Modal Box */
.cmt-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10005;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cmt-dialog-overlay.cmt-active {
    opacity: 1;
    pointer-events: auto;
}

.cmt-dialog-box {
    background-color: var(--cmt-white);
    border-radius: 16px;
    padding: 40px 30px;
    width: 90%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmt-dialog-overlay.cmt-active .cmt-dialog-box {
    transform: scale(1);
}

.cmt-dialog-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.cmt-dialog-icon-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmt-dialog-icon-check svg {
    width: 64px;
    height: 64px;
}

.cmt-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #25d366;
    fill: none;
    animation: cmt-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.cmt-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #25d366;
    animation: cmt-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes cmt-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.cmt-dialog-title {
    font-family: var(--cmt-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--cmt-black);
    margin-bottom: 12px;
}

.cmt-dialog-message {
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.cmt-dialog-close-btn {
    background-color: var(--cmt-black);
    color: var(--cmt-white);
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    outline: none;
}

.cmt-dialog-close-btn:hover {
    background-color: #333333;
}

@keyframes cmt-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Catalog responsive rules */
@media (max-width: 768px) {
    .cmt-catalog-section {
        padding: 60px 15px 30px 15px;
    }

    .cmt-catalog-mockup-wrapper {
        margin-bottom: 15px;
    }

    .cmt-catalog-title {
        font-size: 17px;
    }

    .cmt-catalog-form {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cmt-catalog-submit-btn {
        width: 100%;
        padding: 14px;
    }
}

/* Contact Section Styles */
.cmt-contact-section {
    padding: 40px 20px 80px 20px;
    background-color: #ffffff;
    font-family: var(--cmt-font);
}

.cmt-contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cmt-contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Left Column */
.cmt-contact-left {
    display: flex;
    flex-direction: column;
}

.cmt-contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--cmt-black);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.cmt-contact-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 32px 0;
}

.cmt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

/* Right Column */
.cmt-contact-right {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Form Groups & Labels */
.cmt-contact-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.cmt-contact-grid .cmt-contact-group {
    margin-bottom: 0;
}

.cmt-contact-group-textarea {
    margin-bottom: 0;
    height: 100%;
}

.cmt-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--cmt-black);
    margin-bottom: 8px;
}

/* Inputs & Textarea */
.cmt-contact-input,
.cmt-contact-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--cmt-font);
    font-size: 15px;
    color: var(--cmt-black);
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

select.cmt-contact-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 40px; /* Space for the arrow */
    cursor: pointer;
}

select.cmt-contact-input:invalid,
select.cmt-contact-input option[value=""] {
    color: #999999;
}

select.cmt-contact-input option {
    color: var(--cmt-black);
    background-color: #ffffff;
}

.cmt-contact-textarea {
    resize: none;
    height: 100%;
    min-height: 200px;
}

.cmt-contact-input:focus,
.cmt-contact-textarea:focus {
    border-color: var(--cmt-accent);
    box-shadow: 0 0 0 4px rgba(65, 97, 222, 0.1);
}

/* Validation State */
.cmt-contact-input.cmt-input-error,
.cmt-contact-textarea.cmt-input-error {
    border-color: #e03131;
    box-shadow: 0 0 0 4px rgba(224, 49, 49, 0.1);
}

.cmt-contact-error-msg {
    font-size: 12px;
    color: #e03131;
    margin-top: 6px;
    display: none;
    animation: cmt-fade-in-up 0.3s ease;
}

.cmt-contact-hint {
    font-size: 12px;
    color: #888888;
    margin-top: 6px;
}

/* Submit Button */
.cmt-contact-btn-wrapper {
    margin-top: 12px;
}

.cmt-contact-submit-btn {
    background-color: var(--cmt-black);
    color: var(--cmt-white);
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 36px;
    border: 1px solid var(--cmt-black);
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.cmt-contact-submit-btn:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-1px);
}

/* Responsive Rules for Contact Section */
@media (max-width: 992px) {
    .cmt-contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cmt-contact-textarea {
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .cmt-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cmt-contact-title {
        font-size: 26px;
    }
    .cmt-contact-submit-btn {
        width: 100%;
        padding: 14px;
        text-align: center;
    }
}

/* ==========================================
   Gallery / Carousel Section Styles
   ========================================== */
.cmt-gallery-section {
    position: relative;
    width: 100%;
    background-color: var(--cmt-white);
    padding: 0;
    margin: 0;
    font-family: var(--cmt-font);
    overflow: hidden;
}

/* Gallery Header Styles (Matching Design) */
.cmt-gallery-header {
    text-align: center;
    padding: 70px 24px 45px 24px;
    max-width: 820px;
    margin: 0 auto;
}

.cmt-gallery-title,
.cmt-reels-title {
    font-family: 'Tiro Devanagari Sanskrit', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    color: var(--cmt-black);
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cmt-gallery-subtitle,
.cmt-reels-subtitle {
    font-family: var(--cmt-font);
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.cmt-gallery-subtitle {
    margin-bottom: 24px;
}

.cmt-reels-subtitle {
    margin-bottom: 50px;
}

.cmt-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    color: #ffffff;
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cmt-gallery-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cmt-gallery-btn:active {
    transform: translateY(0);
}

/* Gallery Categories Navigation Bar (Matching Design) */
.cmt-gallery-categories-bar {
    width: 100%;
    background-color: #F1EEEB;
    padding: 26px 0;
    margin-bottom: 40px;
    border-top: 1px solid #e6dfd5;
    border-bottom: 1px solid #e6dfd5;
}

.cmt-gallery-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px; /* Spacing between links matching spacing in design */
    flex-wrap: wrap;
    padding: 0 24px;
}

.cmt-gallery-cat-link {
    font-family: 'Tiro Devanagari Sanskrit', Georgia, serif;
    font-size: 32px; /* Elegant large serif font */
    font-weight: 400;
    color: var(--cmt-black);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--cmt-black);
    transition: color 0.25s ease, text-decoration-color 0.25s ease, opacity 0.25s ease;
}

.cmt-gallery-cat-link:hover {
    color: #666666;
    text-decoration-color: #666666;
}

@media (max-width: 768px) {
    .cmt-gallery-categories-bar {
        padding: 16px 0;
    }
    .cmt-gallery-categories-container {
        gap: 30px;
    }
    .cmt-gallery-cat-link {
        font-size: 20px;
        text-underline-offset: 4px;
    }
    .cmt-gallery-header {
        padding: 50px 20px 35px 20px;
    }

    .cmt-gallery-title,
    .cmt-reels-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .cmt-gallery-subtitle,
    .cmt-reels-subtitle {
        font-size: 15px;
    }

    .cmt-gallery-subtitle {
        margin-bottom: 20px;
    }

    .cmt-gallery-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}

@media (max-width: 480px) {
    .cmt-gallery-header {
        padding: 40px 16px 28px 16px;
    }

    .cmt-gallery-title,
    .cmt-reels-title {
        font-size: 26px;
    }
}

.cmt-gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 850px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .cmt-gallery-carousel-wrapper {
        height: 750px;
    }
}

@media (max-width: 768px) {
    .cmt-gallery-carousel-wrapper {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .cmt-gallery-carousel-wrapper {
        height: 400px;
    }
}

/* Scroller Container */
.cmt-gallery-scroller {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.cmt-gallery-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Carousel Item */
.cmt-gallery-item {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

.cmt-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Elegant Text Overlay */
.cmt-gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    color: var(--cmt-white);
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cmt-gallery-item-name {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
}

.cmt-gallery-item.cmt-active-item .cmt-gallery-item-name {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Buttons */
.cmt-gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cmt-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, opacity 0.3s;
    outline: none;
    opacity: 0.7;
}

.cmt-gallery-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

.cmt-gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.cmt-gallery-nav-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.cmt-nav-prev {
    left: 40px;
}

.cmt-nav-next {
    right: 40px;
}

/* Disabled state */
.cmt-gallery-nav-btn.cmt-disabled {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
}

/* Dot Indicators */
.cmt-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.cmt-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, width 0.3s;
    border: none;
    padding: 0;
}

.cmt-gallery-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.cmt-gallery-dot.cmt-active {
    background-color: var(--cmt-white);
    width: 24px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cmt-gallery-nav-btn {
        width: 44px;
        height: 44px;
        background-color: rgba(0, 0, 0, 0.4);
    }
    
    .cmt-gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .cmt-nav-prev {
        left: 15px;
    }

    .cmt-nav-next {
        right: 15px;
    }

    .cmt-gallery-item-overlay {
        padding: 40px 20px;
    }

    .cmt-gallery-item-name {
        font-size: 18px;
        letter-spacing: 0.05em;
    }
    
    .cmt-gallery-dots {
        bottom: 20px;
        gap: 8px;
    }

    .cmt-gallery-dot {
        width: 6px;
        height: 6px;
    }

    .cmt-gallery-dot.cmt-active {
        width: 16px;
    }
}

/* ==========================================
   Instagram Reels Section Styles
   ========================================== */
.cmt-reels-section {
    padding: 50px 24px 0 24px;
    background-color: var(--cmt-white);
    font-family: var(--cmt-font);
    text-align: center;
}

.cmt-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.cmt-reel-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f7;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmt-reel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.cmt-reel-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cmt-reel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmt-reel-play-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 3;
}

.cmt-reel-play-icon svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.cmt-reel-views {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cmt-white);
    font-size: 14px;
    font-weight: 500;
    z-index: 3;
}

.cmt-reel-views svg {
    width: 16px;
    height: 16px;
}

/* Hover States */
.cmt-reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cmt-reel-card:hover .cmt-reel-img {
    transform: scale(1.05);
}

.cmt-reel-card:hover .cmt-reel-play-icon {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.08);
}

.cmt-reels-btn-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.cmt-reels-follow-btn {
    display: inline-block;
    background-color: #2b2a29;
    color: var(--cmt-white);
    font-family: var(--cmt-font);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cmt-reels-follow-btn:hover {
    background-color: #111111;
    color: var(--cmt-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for Reels section */
@media (max-width: 1200px) {
    .cmt-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    .cmt-reels-section {
        padding: 40px 20px 0 20px;
    }
}

@media (max-width: 768px) {
    .cmt-reels-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 16px;
    }
    .cmt-reels-subtitle {
        margin-bottom: 30px;
    }
    .cmt-reels-follow-btn {
        width: 100%;
        padding: 14px;
        text-align: center;
        box-sizing: border-box;
    }
}

/* Footer Section Styling */
.cmt-footer {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 80px 40px;
    font-family: var(--cmt-font);
    color: var(--cmt-black);
}

.cmt-footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.cmt-footer-col {
    display: flex;
    flex-direction: column;
}

.cmt-footer-logo-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cmt-footer-logo-link {
    display: inline-block;
}

.cmt-footer-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cmt-footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 0;
}

.cmt-footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.cmt-footer-social-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.cmt-footer-social-btn svg {
    width: 20px;
    height: 20px;
}

.cmt-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    letter-spacing: 0.02em;
    font-family: var(--cmt-font);
}

.cmt-footer-text {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: var(--cmt-font);
}

.cmt-footer-col h4:last-of-type + p,
.cmt-footer-text:last-child {
    margin-bottom: 0;
}

.cmt-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cmt-footer-link {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    transition: color 0.2s ease, opacity 0.2s ease;
    font-family: var(--cmt-font);
    display: inline-block;
}

.cmt-footer-link:hover {
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .cmt-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .cmt-footer {
        padding: 60px 30px;
    }
    .cmt-footer-logo-col {
        align-items: flex-start;
        text-align: left;
    }
    .cmt-footer-logo {
        margin: 0;
    }
    .cmt-footer-socials {
        margin-top: 20px;
        padding-top: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .cmt-footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .cmt-footer {
        padding: 50px 20px;
    }
    .cmt-footer-logo-col {
        align-items: center;
        text-align: center;
    }
    .cmt-footer-logo {
        margin: 0 auto;
    }
    .cmt-footer-socials {
        margin-top: 20px;
        padding-top: 0;
        justify-content: center;
    }
}

/* ==========================================================================
   Why Choose Cemar Section
   ========================================================================== */
.cmt-why-choose-section {
    padding: 50px 0 0 0;
    background-color: #ffffff;
    text-align: center;
    width: 100%;
}

.cmt-why-choose-title {
    font-family: 'Tiro Devanagari Sanskrit', Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 45px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.cmt-why-choose-bar {
    background-color: #f4f4f4;
    padding: 32px 20px;
    width: 100%;
}

.cmt-why-choose-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cmt-why-choose-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

.cmt-why-choose-item-title {
    font-family: var(--cmt-font, sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 5px;
    line-height: 1.3;
}

.cmt-why-choose-item-desc {
    font-family: var(--cmt-font, sans-serif);
    font-size: 13.5px;
    font-weight: 400;
    color: #444444;
    line-height: 1.3;
}

.cmt-why-choose-divider {
    width: 1px;
    height: 44px;
    background-color: #1a1a1a;
    opacity: 0.85;
    flex-shrink: 0;
}

/* Responsive Why Choose Section */
@media (max-width: 991px) {
    .cmt-why-choose-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .cmt-why-choose-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
    }
    .cmt-why-choose-divider {
        display: none;
    }
    .cmt-why-choose-item {
        padding: 10px 5px;
    }
}

@media (max-width: 575px) {
    .cmt-why-choose-section {
        padding: 50px 0 0 0;
    }
    .cmt-why-choose-title {
        font-size: 25px;
        margin-bottom: 25px;
    }
    .cmt-why-choose-bar {
        padding: 25px 15px;
    }
    .cmt-why-choose-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
}

/* ==========================================================================
   Categories Page System (Matching Mockup Design)
   ========================================================================== */
.cmt-categories-page {
    background-color: var(--cmt-white);
    padding: 70px 0 0 0;
    font-family: var(--cmt-font);
}

.cmt-categories-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cmt-category-block {
    margin-bottom: 75px;
}

.cmt-category-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
}

.cmt-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cmt-category-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #777777;
    font-weight: 400;
}

.cmt-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cmt-category-card {
    display: flex;
    flex-direction: column;
}

.cmt-category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cmt-category-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f2f2f5;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cmt-category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.cmt-category-card-link:hover .cmt-category-card-img {
    transform: scale(1.05);
    filter: brightness(1.03);
}

.cmt-category-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #222222;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.cmt-category-card-link:hover .cmt-category-card-title {
    color: #9e825a;
}

/* Category Texture / Video Banner */
.cmt-category-banner {
    position: relative;
    width: 100%;
    height: 680px;
    margin-top: 80px;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.cmt-category-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cmt-category-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cmt-category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.cmt-category-play-btn {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    color: #ffffff !important;
}

.cmt-category-play-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cmt-category-play-ring .cmt-play-icon,
.cmt-category-play-ring .cmt-play-icon path {
    width: 40px;
    height: 40px;
    fill: #ffffff !important;
    color: #ffffff !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.cmt-category-play-btn:hover .cmt-category-play-ring {
    transform: scale(1.12);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cmt-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cmt-category-banner {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .cmt-categories-wrapper {
        padding: 0 20px;
    }
    .cmt-category-block {
        margin-bottom: 50px;
    }
    .cmt-category-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cmt-category-title {
        font-size: 28px;
    }
    .cmt-category-card-title {
        font-size: 17px;
    }
    .cmt-category-banner {
        height: 320px;
        margin-top: 50px;
        margin-bottom: 0;
    }
    .cmt-category-play-ring {
        width: 75px;
        height: 75px;
    }
    .cmt-category-play-ring .cmt-play-icon {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   CATEGORY PRODUCT LISTING LAYOUT TEMPLATES (1: Grid & 2: Dual Split)
   ========================================================================== */

/* Template 1: Single Image Grid (Washbasin & Travertine Style) */
.cmt-single-grid-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cmt-single-grid-card:hover {
    transform: translateY(-4px);
}

.cmt-single-grid-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f4;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.cmt-single-grid-card:hover .cmt-single-grid-img-wrap {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cmt-single-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmt-single-grid-card:hover .cmt-single-grid-img {
    transform: scale(1.05);
}

.cmt-single-grid-title {
    font-family: 'Tiro Devanagari Sanskrit', serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: #8E8176 !important;
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.cmt-single-grid-card:hover .cmt-single-grid-title {
    color: #61564c !important;
}

.cmt-single-grid-subtitle {
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    color: #a8a29e;
    margin-top: 4px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

@media (max-width: 640px) {
    .cmt-single-grid-title {
        font-size: 22px !important;
    }
}

/* Template 2: Dual Image Split (Vein cut Style) */
.cmt-dual-split-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.cmt-dual-split-label-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    user-select: none;
}

.cmt-dual-split-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Cinzel', 'Playfair Display', serif, Georgia;
    font-size: 24px;
    font-weight: 400;
    color: #78716c;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    white-space: nowrap;
    text-align: center;
    transition: color 0.3s ease;
}

.cmt-dual-split-row:hover .cmt-dual-split-vertical-text {
    color: #1c1917;
}

.cmt-dual-split-images-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background-color: #f5f5f4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cmt-dual-split-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background-color: #e7e5e4;
    display: block;
    text-decoration: none;
}

.cmt-dual-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.cmt-dual-split-img-box:hover .cmt-dual-split-img {
    transform: scale(1.03);
}

/* Discover Link Center Overlay on Texture Image */
.cmt-dual-split-discover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.cmt-dual-split-img-box:hover .cmt-dual-split-discover-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.cmt-dual-split-discover-link {
    display: inline-block;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.2px;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-radius: 4px;
    transition: transform 0.3s ease, text-shadow 0.3s ease, background-color 0.3s ease;
}

.cmt-dual-split-img-box:hover .cmt-dual-split-discover-link {
    transform: scale(1.05);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
    background-color: rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .cmt-dual-split-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .cmt-dual-split-label-col {
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .cmt-dual-split-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 17px;
        text-align: left;
    }

    .cmt-dual-split-images-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .cmt-dual-split-img-box {
        aspect-ratio: 16 / 10;
    }
}

/* ==========================================================================
   FIGMA DESIGN SYSTEM NORMALIZATION & SHARP CORNERS REFACTOR
   ========================================================================== */

:root {
    --cmt-bg-cream: #f5f0eb;
    --cmt-bg-cream-light: #faf7f2;
    --cmt-border-cream: #e6dfd5;
    --cmt-dark-accent: #111111;
}

/* 1. Global Curve Removal (Zero Border-Radius for Sharp Architectural Luxury) */
.cmt-cat-hero-btn,
.cmt-product-cta-btn,
.cmt-contact-btn,
.cmt-btn-primary,
.cmt-single-grid-card,
.cmt-single-grid-img-wrap,
.cmt-dual-split-img-box,
.cmt-dual-split-discover-link,
.cmt-reel-card,
.cmt-reel-img-wrapper,
.cmt-product-cta-input,
.cmt-contact-input,
.cmt-contact-textarea,
.cmt-contact-select,
.cmt-product-cta-box,
.cmt-cat-hero-card,
.cmt-dialog-box {
    border-radius: 0 !important;
}

/* Subtle corner radius for Action Buttons & Inputs */
.cmt-gallery-btn,
.cmt-catalog-submit-btn,
.cmt-catalog-input,
.cmt-reels-follow-btn {
    border-radius: 6px !important;
}

/* 2. Standardized Cream / Beige Tone */
.cmt-why-choose-bar {
    background-color: var(--cmt-bg-cream) !important;
}

/* 3. Category Hero Floating Card */
.cmt-hero-content-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
    display: flex;
    align-items: center;
    min-height: calc(100% - 100px);
}

.cmt-cat-hero-card {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 40px 48px;
    max-width: 540px;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cmt-cat-hero-title {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px 0;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.cmt-cat-hero-desc {
    font-family: var(--cmt-font);
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    font-weight: 300;
}

.cmt-cat-hero-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: var(--cmt-font);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cmt-cat-hero-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .cmt-hero-content-layer {
        padding: 90px 20px 20px 20px;
    }
    .cmt-cat-hero-card {
        padding: 24px 20px;
        max-width: 100%;
    }
    .cmt-cat-hero-title {
        font-size: 30px;
    }
}

/* 4. Product Listing Dual CTA Boxes (Figma Specification) */
.cmt-product-cta-section {
    background-color: #ffffff;
    padding: 20px 0 60px 0;
    width: 100%;
}

.cmt-product-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
}

.cmt-product-cta-box {
    background-color: var(--cmt-bg-cream);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--cmt-border-cream);
}

.cmt-product-cta-title {
    font-family: var(--cmt-font);
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.3;
}

.cmt-product-cta-desc {
    font-family: var(--cmt-font);
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: center;
}

.cmt-product-cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.cmt-product-cta-input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d5cecb;
    padding: 10px 16px;
    font-family: var(--cmt-font);
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    text-align: left;
}

.cmt-product-cta-input:focus {
    border-color: #1a1a1a;
}

.cmt-product-cta-btn {
    display: inline-block;
    background-color: #1f1f1f;
    color: #ffffff;
    font-family: var(--cmt-font);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    align-self: center;
    transition: background-color 0.3s ease;
}

.cmt-product-cta-btn:hover {
    background-color: #383838;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cmt-product-cta-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cmt-product-cta-box {
        padding: 30px 20px;
    }
}

/* 5. Footer Dark Bottom Bar */
.cmt-footer-bottom-bar {
    background-color: #1f1f1f;
    color: #999999;
    padding: 16px 40px;
    font-family: var(--cmt-font);
    font-size: 13px;
    border-top: 1px solid #2a2a2a;
}

.cmt-footer-bottom-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.cmt-footer-designer,
.cmt-footer-copyright {
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .cmt-footer-bottom-bar {
        padding: 16px 20px;
        text-align: center;
    }
    .cmt-footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }
}