/* =========================================================
   TILES & MARBLE
   PREMIUM CLASSIC / LUXURY INTERIOR WEBSITE
   COMPLETE INDEX CSS
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {

    --color-bg: #f5f2ec;
    --color-bg-soft: #eeebe4;
    --color-white: #ffffff;

    --color-dark: #171714;
    --color-dark-soft: #24231f;
    --color-charcoal: #30302b;

    --color-text: #2d2c28;
    --color-text-light: #74716a;
    --color-text-muted: #929087;

    --color-gold: #b29a6a;
    --color-gold-dark: #927b4f;
    --color-gold-light: #c8b589;

    --color-border: rgba(32, 31, 27, 0.12);
    --color-border-light: rgba(255, 255, 255, 0.18);

    --font-body: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;

    --container-width: 1320px;

    --header-height: 88px;

    --transition-fast: 0.25s ease;
    --transition: 0.4s cubic-bezier(.22, .61, .36, 1);
    --transition-slow: 0.7s cubic-bezier(.22, .61, .36, 1);

    --shadow-soft:
        0 15px 45px rgba(20, 18, 14, 0.08);

    --shadow-card:
        0 20px 60px rgba(20, 18, 14, 0.12);

}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--color-gold);
    color: var(--color-white);
}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {
    width: min(100% - 48px, var(--container-width));
    margin-inline: auto;
}


/* =========================================================
   04. PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-dark);

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--color-white);
}

.preloader-line {
    width: 110px;
    height: 1px;
    margin: 20px auto 13px;
    background: var(--color-gold);
    transform-origin: left;
    animation: loaderLine 1.5s ease infinite;
}

.preloader-inner>span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--color-gold-light);
}

@keyframes loaderLine {
    0% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}


/* =========================================================
   05. TOP BAR
========================================================= */

.top-bar {
    position: relative;
    z-index: 1100;

    background: var(--color-dark);
    color: var(--color-white);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.top-bar-left {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 17px;
}

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.84);

    transition: color var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--color-gold-light);
}

.top-bar-right i {
    color: var(--color-gold);
    font-size: 11px;
}

.top-bar-divider {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   06. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: rgba(245, 242, 236, 0.96);

    border-bottom: 1px solid var(--color-border);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.site-header.scrolled {
    position: sticky;
    top: 0;

    background: rgba(245, 242, 236, 0.98);

    box-shadow:
        0 8px 35px rgba(20, 18, 14, 0.07);
}

.header-wrapper {
    min-height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* =========================================================
   07. BRAND LOGO
========================================================= */

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-image {
    display: block;
    width: 216px;
    height: 282px;
    max-height: 95px;
    object-fit: contain;
    object-position: center;
}

/* =========================================================
   RESPONSIVE LOGO
========================================================= */

@media (max-width: 1200px) {

    .brand-logo-image {
        width: 195px;
        max-height: 68px;
    }

}

@media (max-width: 992px) {

    .brand-logo-image {
        width: 180px;
        max-height: 64px;
    }

}

@media (max-width: 768px) {

    .brand-logo-image {
        width: 165px;
        max-height: 58px;
    }

}

@media (max-width: 480px) {

    .brand-logo-image {
        width: 150px;
        max-height: 54px;
    }

}


/* =========================================================
   08. DESKTOP NAV
========================================================= */

.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-item {
    position: relative;
}

.nav-link {
    min-height: 88px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    position: relative;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;

    color: var(--color-dark);

    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 24px;

    width: 0;
    height: 1px;

    background: var(--color-gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 9px;
}


/* =========================================================
   09. DESKTOP DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: -18px;

    min-width: 245px;

    padding: 13px 0;

    background: var(--color-white);

    border: 1px solid var(--color-border);

    box-shadow: var(--shadow-card);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
}

.dropdown-item>a {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    font-size: 13px;
    font-weight: 500;

    color: var(--color-text);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        padding var(--transition-fast);
}

.dropdown-item>a:hover {
    color: var(--color-gold-dark);
    background: var(--color-bg);
    padding-left: 24px;
}

.dropdown-item>a i {
    font-size: 9px;
    color: var(--color-text-muted);
}


/* =========================================================
   10. NESTED SUBMENU
========================================================= */

.submenu {
    position: absolute;
    top: -13px;
    left: calc(100% + 1px);

    width: 245px;

    padding: 13px 0;

    background: var(--color-white);

    border: 1px solid var(--color-border);

    box-shadow: var(--shadow-card);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    min-height: 43px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    font-size: 12px;
    font-weight: 500;

    color: var(--color-text);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        padding var(--transition-fast);
}

.submenu a:hover {
    color: var(--color-gold-dark);
    background: var(--color-bg);
    padding-left: 25px;
}


/* =========================================================
   11. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: var(--color-dark);

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.header-icon:hover {
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.header-icon i {
    font-size: 14px;
}

.header-quote {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 0 19px;

    background: var(--color-dark);
    color: var(--color-white);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.header-quote:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

.header-quote i {
    font-size: 10px;
}


/* =========================================================
   12. MOBILE MENU TOGGLE
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--color-border);
}

.mobile-menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--color-dark);

    transition: transform var(--transition);
}


/* =========================================================
   13. MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    position: fixed;
    z-index: 990;

    top: 0;
    right: 0;

    width: min(400px, 100%);
    height: 100vh;

    padding-top: 140px;

    background: var(--color-bg);

    overflow-y: auto;

    transform: translateX(100%);
    visibility: hidden;

    transition:
        transform var(--transition-slow),
        visibility var(--transition-slow);
}

.mobile-navigation.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-navigation-inner {
    padding: 25px 28px 40px;
}

.mobile-menu>li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu>li>a,
.mobile-dropdown-button {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--color-dark);

    font-size: 15px;
    font-weight: 600;

    text-align: left;
}

.mobile-dropdown-button i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.mobile-dropdown.open>.mobile-dropdown-button i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;

    padding: 0 0 10px 16px;
}

.mobile-dropdown.open>.mobile-submenu {
    display: block;
}

.mobile-submenu a {
    min-height: 45px;

    display: flex;
    align-items: center;

    color: var(--color-text-light);

    font-size: 13px;
    font-weight: 500;

    border-bottom: 1px solid rgba(32, 31, 27, 0.06);
}

.mobile-submenu .mobile-dropdown-button {
    min-height: 48px;

    font-size: 13px;
    color: var(--color-text);
}

.mobile-quote-button {
    margin-top: 30px;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-dark);
    color: var(--color-white);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   14. SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(23, 23, 20, 0.97);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: min(700px, 100%);
    position: relative;

    text-align: center;
}

.search-close {
    position: absolute;

    top: -80px;
    right: 0;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: var(--color-white);

    border: 1px solid rgba(255, 255, 255, 0.2);

    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}

.search-close:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.search-overlay .section-label {
    color: var(--color-gold-light);
}

.search-overlay h2 {
    margin: 20px 0 35px;

    font-family: var(--font-display);
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 500;

    color: var(--color-white);
}

.search-form {
    display: flex;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.search-form input {
    width: 100%;
    height: 62px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--color-white);

    font-size: 17px;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-form button {
    width: 62px;

    color: var(--color-gold-light);

    font-size: 17px;
}


/* =========================================================
   15. COMMON SECTIONS
========================================================= */

.section-padding {
    padding: 70px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--color-gold-dark);
}

.section-label::before {
    content: "";

    width: 27px;
    height: 1px;

    background: currentColor;
}

.section-label.light {
    color: var(--color-gold-light);
    font-size: 20px;
}

.section-title {
    margin-top: 18px;

    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.025em;

    color: var(--color-dark);
}

.section-title em {
    color: var(--color-gold-dark);
    font-style: italic;
}

.section-description {
    max-width: 650px;

    margin-top: 24px;

    color: var(--color-text-light);

    font-size: 15px;
    line-height: 1.9;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;
}


/* =========================================================
   16. HERO
========================================================= */

.hero-section {
    position: relative;

    height: calc(100vh - 134px);
    min-height: 680px;

    overflow: hidden;

    background: var(--color-dark);
}

.hero-slider {
    position: relative;

    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    transition: transform 7s ease;
}

.hero-slide.active .hero-image img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(12, 12, 10, 0.72) 0%,
            rgba(12, 12, 10, 0.42) 42%,
            rgba(12, 12, 10, 0.18) 75%,
            rgba(12, 12, 10, 0.34) 100%);

    z-index: 1;
}


/* =========================================================
   17. HERO CONTENT
   EXACT CENTER
========================================================= */

.hero-slide>.container {
    position: relative;
    z-index: 3;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: min(900px, 100%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--color-white);

    transform: translateY(20px);
    opacity: 0;

    transition:
        opacity 0.8s ease 0.2s,
        transform 0.8s cubic-bezier(.22, .61, .36, 1) 0.2s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-number {
    margin-bottom: 19px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;

    color: rgba(255, 255, 255, 0.72);
}

.hero-content .section-label {
    justify-content: center;
}

.hero-content h1 {
    margin-top: 19px;

    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 94px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: var(--color-white);

    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);
}

.hero-content h1 em {
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-content p {
    max-width: 570px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    line-height: 1.8;
}

.hero-content .primary-button {
    margin-top: 25px;
}


/* =========================================================
   18. BUTTONS
========================================================= */

.primary-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 0 23px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.primary-button i {
    font-size: 10px;

    transition: transform var(--transition-fast);
}

.primary-button:hover i {
    transform: translateX(4px);
}

.light-button {
    border: 1px solid rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.04);

    color: var(--color-white);

    backdrop-filter: blur(5px);
}

.light-button:hover {
    background: var(--color-white);
    color: var(--color-dark);

    transform: translateY(-2px);
}

.dark-button {
    background: var(--color-dark);
    color: var(--color-white);
}

.dark-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}


/* =========================================================
   19. HERO CONTROLS
========================================================= */

.hero-controls {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 34px;

    transform: translateX(-50%);

    width: min(100% - 48px, var(--container-width));

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;
}

.hero-prev,
.hero-next {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: var(--color-white);

    border: 1px solid rgba(255, 255, 255, 0.28);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.hero-prev i,
.hero-next i {
    font-size: 11px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 28px;
    height: 2px;

    background: rgba(255, 255, 255, 0.3);

    transition:
        width var(--transition),
        background var(--transition);
}

.hero-dot.active {
    width: 50px;
    background: var(--color-gold-light);
}


/* =========================================================
   20. ABOUT
========================================================= */

.about-section {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;

    overflow: hidden;

    aspect-ratio: 0.82;
}

.image-frame::after {
    content: "";

    position: absolute;
    inset: 20px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.9s ease;
}

.about-image:hover .image-frame img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;

    right: -35px;
    bottom: 45px;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--color-dark);
    color: var(--color-white);

    border: 7px solid var(--color-bg);
}

.about-badge strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
}

.about-badge span {
    margin-top: 5px;

    max-width: 90px;

    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--color-gold-light);
}

.about-content {
    max-width: 650px;
}

.about-features {
    margin-top: 38px;

    display: grid;
    gap: 21px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 17px;
}

.feature-icon {
    flex: 0 0 47px;

    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    color: var(--color-gold-dark);

    border: 1px solid var(--color-border);
}

.feature-icon i {
    font-size: 14px;
}

.about-feature h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
}

.about-feature p {
    margin-top: 2px;

    font-size: 12px;
    color: var(--color-text-light);
}

.text-button {
    margin-top: 37px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--color-dark);

    border-bottom: 1px solid var(--color-gold);

    padding-bottom: 7px;

    transition:
        color var(--transition-fast),
        gap var(--transition-fast);
}

.text-button:hover {
    color: var(--color-gold-dark);
    gap: 17px;
}


/* =========================================================
   21. PRODUCT SECTION
========================================================= */

.products-section {
    background: var(--color-bg-soft);
    height: 100%;
    padding: 50px 0 70px;
}

.slider-navigation {
    display: flex;
    gap: 8px;
}

.slider-navigation button {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    color: var(--color-dark);

    border: 1px solid var(--color-border);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.slider-navigation button:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.slider-navigation i {
    font-size: 11px;
}

.product-slider-wrapper {
    overflow: hidden;
}

.product-slider {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding-bottom: 10px;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 300px;

    background: var(--color-white);

    border: 1px solid var(--color-border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.product-image {
    position: relative;

    height: 350px;

    overflow: hidden;
}

.product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.04),
            transparent 45%,
            rgba(0, 0, 0, 0.15));

    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-number {
    position: absolute;

    z-index: 2;

    top: 17px;
    left: 17px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.93);

    font-family: var(--font-display);
    font-size: 14px;

    color: var(--color-dark);
}

.product-view {
    position: absolute;

    z-index: 3;

    right: 17px;
    bottom: 17px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    background: var(--color-dark);
    color: var(--color-white);

    opacity: 0;
    transform: translateY(8px);

    transition:
        opacity var(--transition),
        transform var(--transition),
        background var(--transition-fast);
}

.product-card:hover .product-view {
    opacity: 1;
    transform: translateY(0);
}

.product-view:hover {
    background: var(--color-gold-dark);
}

.product-view i {
    font-size: 11px;
}

.product-content {
    padding: 29px 28px 31px;
}

.product-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--color-gold-dark);
}

.product-content h3 {
    margin-top: 9px;

    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 500;

    color: var(--color-dark);
}

.product-content p {
    margin-top: 9px;

    font-size: 13px;
    line-height: 1.7;

    color: var(--color-text-light);
}

.product-content>a {
    margin-top: 20px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-dark);

    transition:
        color var(--transition-fast),
        gap var(--transition-fast);
}

.product-content>a:hover {
    color: var(--color-gold-dark);
    gap: 15px;
}


/* =========================================================
   22. PROJECT SECTION
========================================================= */

.project-section {
    position: relative;

    background: var(--color-dark);

    overflow: hidden;
    padding-top: 30px;
}

.project-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.025),
            transparent 50%);

    pointer-events: none;
}

.light-heading .section-title {
    color: var(--color-white);
}

.light-heading .section-title em {
    color: var(--color-gold-light);
}

.project-slider-wrapper {
    overflow: hidden;
}

.project-slider {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    scrollbar-width: none;

    scroll-behavior: smooth;
}

.project-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    position: relative;

    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 310px;

    height: 520px;

    overflow: hidden;

    background: var(--color-charcoal);
}

.project-image {
    position: absolute;
    inset: 0;
}

.project-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.08) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.9s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-content {
    position: absolute;

    z-index: 2;

    left: 28px;
    right: 28px;
    bottom: 29px;
}

.project-content span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--color-gold-light);
}

.project-content h3 {
    margin-top: 9px;

    font-family: var(--font-display);
    font-size: 29px;
    line-height: 1.15;
    font-weight: 500;

    color: var(--color-white);
}

.project-content a {
    margin-top: 17px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--color-white);

    transition:
        color var(--transition-fast),
        gap var(--transition-fast);
}

.project-content a:hover {
    color: var(--color-gold-light);
    gap: 15px;
}


.section-label {
    margin-top: 20px;
}

/* =========================================================
   23. OWNER
========================================================= */

.owner-section {
    background: var(--color-bg);
}

.owner-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    align-items: center;
}

.owner-image {
    position: relative;

    height: 610px;

    overflow: hidden;
}

.owner-image::after {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255, 255, 255, 0.45);
}

.owner-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.owner-image:hover img {
    transform: scale(1.04);
}

.owner-content {
    max-width: 650px;
}

.owner-content blockquote {
    margin-top: 32px;

    padding-left: 24px;

    border-left: 1px solid var(--color-gold);

    font-family: var(--font-display);
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.35;
    font-style: italic;

    color: var(--color-dark);
}

.owner-content>p {
    margin-top: 24px;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.9;
}

.owner-signature {
    margin-top: 32px;

    display: flex;
    flex-direction: column;
}

.owner-signature strong {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;

    color: var(--color-dark);
}

.owner-signature span {
    margin-top: 3px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--color-gold-dark);
}


/* =========================================================
   24. CONTACT
========================================================= */

.contact-section {
    background: var(--color-bg-soft);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    align-items: start;
}

.contact-info {
    max-width: 520px;
}

.contact-info>p {
    margin-top: 25px;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.9;
}

.contact-details {
    margin-top: 38px;

    display: grid;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail>span {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-border);

    color: var(--color-gold-dark);
}

.contact-detail>span i {
    font-size: 12px;
}

.contact-detail small {
    display: block;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;

    color: var(--color-gold-dark);
}

.contact-detail a,
.contact-detail p {
    margin-top: 4px;

    display: block;

    font-size: 13px;
    font-weight: 500;

    color: var(--color-dark);
}

.contact-detail a:hover {
    color: var(--color-gold-dark);
}



/* =========================================
   CUSTOMER FEEDBACK SLIDER
========================================= */

.sd-feedback-section {
    width: 100%;
    padding: 70px 0;
    background: #202020;
    overflow: hidden;
}

.sd-feedback-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.sd-feedback-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.sd-feedback-heading span {
    display: block;
    margin-bottom: 13px;
    color: #b99662;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
}

.sd-feedback-heading h2 {
    margin: 0 0 15px;
    color: #f4f0e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
}

.sd-feedback-heading p {
    margin: 0;
    color: #999;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   SLIDER
========================================= */

.sd-feedback-slider {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr) 55px;
    align-items: center;
    gap: 18px;
}

.sd-feedback-window {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.sd-feedback-track {
    display: flex;
    gap: 25px;
    width: max-content;
    transform: translate3d(0, 0, 0);
    transition: transform .65s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}


/* =========================================
   CARD
========================================= */

.sd-feedback-card {
    position: relative;
    flex: 0 0 calc((min(1400px, 92vw) - 50px) / 3);

    box-sizing: border-box;
    padding: 36px 32px;
    background: #292929;
    border: 1px solid rgba(185, 150, 98, .18);

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.sd-feedback-card:hover {
    border-color: rgba(185, 150, 98, .5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.sd-feedback-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 45px;
    height: 2px;

    background: #b99662;
}


/* ---------- Top ---------- */

.sd-feedback-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.sd-feedback-stars {
    color: #c09a66;
    font-size: 14px;
    letter-spacing: 3px;
}

.sd-feedback-quote {
    color: #b99662;
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: .5;
    opacity: .5;
}


/* ---------- Text ---------- */

.sd-feedback-text {
    min-height: 125px;

    margin: 0 0 28px;

    color: #c5c5c5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    line-height: 1.8;
}


/* ---------- Client ---------- */

.sd-feedback-client {
    display: flex;
    align-items: center;

    gap: 15px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.sd-client-avatar {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    overflow: hidden;

    border-radius: 50%;

    border: 1px solid #b99662;
}

.sd-client-avatar {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);

    color: var(--color-gold-dark);
}

.sd-client-avatar i {
    font-size: 22px;
}

.sd-feedback-client h4 {
    margin: 0 0 5px;

    color: #eee;

    font-size: 15px;
    font-weight: 600;
}

.sd-feedback-client span {
    color: #a98b60;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================================
   ARROWS
========================================= */

.sd-feedback-arrow {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(185, 150, 98, .4);

    background: transparent;

    color: #b99662;

    font-size: 16px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.sd-feedback-arrow:hover {
    background: #b99662;
    color: #202020;
    border-color: #b99662;
}

.sd-feedback-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.sd-feedback-arrow:disabled:hover {
    background: transparent;
    color: #b99662;
    border-color: rgba(185, 150, 98, .4);
}


/* =========================================
   DOTS
========================================= */

.sd-feedback-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 9px;

    margin-top: 35px;
}

.sd-feedback-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #555;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.sd-feedback-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #b99662;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .sd-feedback-section {
        padding: 80px 0;
    }

    .sd-feedback-card {
        flex-basis: calc((min(92vw, 900px) - 25px) / 2);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .sd-feedback-section {
        padding: 65px 0;
    }

    .sd-feedback-heading {
        margin-bottom: 40px;
    }

    .sd-feedback-slider {
        display: block;
    }

    .sd-feedback-card {
        flex-basis: 90vw;
        padding: 30px 25px;
    }

    .sd-feedback-text {
        min-height: auto;
        font-size: 16px;
    }

    .sd-feedback-arrow {
        display: none;
    }

    .sd-feedback-track {
        gap: 15px;
    }

}




/* =========================================
   SWIFT DECOR - COUNTER SECTION
========================================= */

.sd-counter-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #202020;
    overflow: hidden;
}

/* Subtle background */

.sd-counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -60%);
    border-radius: 50%;
    background: rgba(185, 150, 98, .05);
    filter: blur(20px);
}

.sd-counter-container {
    position: relative;
    z-index: 2;
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.sd-counter-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.sd-counter-heading span {
    display: block;
    margin-bottom: 13px;

    color: #b99662;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
}

.sd-counter-heading h2 {
    margin: 0 0 15px;

    color: #f4f0e8;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
}

.sd-counter-heading p {
    margin: 0;

    color: #999;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.sd-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(185, 150, 98, .25);
    border-bottom: 1px solid rgba(185, 150, 98, .25);
}


/* =========================================
   ITEM
========================================= */

.sd-counter-item {
    position: relative;

    padding: 45px 25px;

    text-align: center;

    border-right: 1px solid rgba(185, 150, 98, .2);

    transition: background .4s ease;
}

.sd-counter-item:last-child {
    border-right: none;
}

.sd-counter-item:hover {
    background: rgba(185, 150, 98, .04);
}


/* =========================================
   ICON
========================================= */

.sd-counter-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border: 1px solid rgba(185, 150, 98, .4);

    color: #b99662;

    font-size: 19px;

    transform: rotate(45deg);
}

.sd-counter-icon i {
    transform: rotate(-45deg);
}


/* =========================================
   NUMBER
========================================= */

.sd-counter-number {
    display: flex;
    justify-content: center;
    align-items: baseline;

    margin-bottom: 10px;
}

.counter-number {
    color: #f3eee5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4vw, 62px);
    font-weight: 400;

    line-height: 1;
}

.counter-plus {
    margin-left: 4px;

    color: #b99662;

    font-family: Georgia, serif;

    font-size: 28px;
}


/* =========================================
   TITLE
========================================= */

.sd-counter-item h3 {
    margin: 0 0 9px;

    color: #e8e3da;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: .5px;
}

.sd-counter-item p {
    margin: 0;

    color: #858585;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sd-counter-section {
        padding: 80px 0;
    }

    .sd-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-counter-item:nth-child(2) {
        border-right: none;
    }

    .sd-counter-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(185, 150, 98, .2);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sd-counter-section {
        padding: 65px 0;
    }

    .sd-counter-heading {
        margin-bottom: 45px;
    }

    .sd-counter-grid {
        grid-template-columns: 1fr;
    }

    .sd-counter-item,
    .sd-counter-item:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid rgba(185, 150, 98, .2);
    }

    .sd-counter-item:last-child {
        border-bottom: none;
    }

    .sd-counter-item {
        padding: 35px 20px;
    }

}

/* =========================================================
   26. BLOG
========================================================= */

.blog-section {
    background: var(--color-bg);
    margin-bottom: 70px;
}

.blog-slider-wrapper {
    overflow: hidden;
}

.blog-slider {
    display: flex;
    gap: 25px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 calc((100% - 50px) / 3);

    min-width: 300px;

    background: var(--color-white);

    border: 1px solid var(--color-border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft);
}

.blog-image {
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;


    object-fit: cover;

    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 28px 27px 30px;
}

.blog-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--color-gold-dark);
}

.blog-content h3 {
    margin-top: 10px;

    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;

    color: var(--color-dark);
}

.blog-content p {
    margin-top: 12px;

    font-size: 12px;
    line-height: 1.75;

    color: var(--color-text-light);
}

.blog-content a {
    margin-top: 20px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--color-dark);

    transition:
        color var(--transition-fast),
        gap var(--transition-fast);
}

.blog-content a:hover {
    color: var(--color-gold-dark);
    gap: 15px;
}


/* =========================================================
   27. FOOTER
========================================================= */

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-top {
    display: grid;

    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;

    gap: 65px;

    padding: 90px 0 75px;
}

.footer-brand {
    max-width: 330px;
}

.footer-brand-image {
    width: 100%;
    height: 160px;

    margin-bottom: 27px;

    overflow: hidden;
}

.footer-brand-image img {
    width: 299px;

    transition: transform 0.8s ease;
}

.footer-brand-image:hover img {
    transform: scale(1.04);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.footer-logo small {
    margin-top: 6px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3em;

    color: var(--color-gold-light);
}

.footer-brand>p {
    margin-top: 20px;

    font-size: 12px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.55);
}

.social-links {
    margin-top: 25px;
    margin-left: 50px;
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.72);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
}

.social-links i {
    font-size: 12px;
}

.footer-column h3 {
    margin-bottom: 21px;

    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;

    color: var(--color-white);
}

.footer-column ul {
    display: grid;
    gap: 10px;
}

.footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.55);

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-column li a:hover {
    color: var(--color-gold-light);
    transform: translateX(3px);
}

.footer-column li i {
    width: 13px;

    color: var(--color-gold);
    font-size: 10px;
}


/* =========================================================
   28. FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 85px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);

    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-gold-light);
}

.back-to-top {
    justify-self: end;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: var(--color-white);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.back-to-top:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.back-to-top i {
    font-size: 11px;
}


/* =========================================================
   29. WHATSAPP - PREMIUM HIGHLIGHT
========================================================= */
/* =========================================================
   WHATSAPP - LEFT BOTTOM CIRCLE
========================================================= */

.whatsapp-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    right: auto;

    z-index: 900;

    width: 56px;
    height: 56px;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: #25d366;

    border: 2px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.40),
        0 0 0 0 rgba(37, 211, 102, 0.50);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    animation: whatsappPulse 2.2s infinite;
}


/* ICON */

.whatsapp-button i {
    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: transparent;

    border-radius: 0;

    font-size: 27px;
    box-shadow: none;
}


/* HOVER */

.whatsapp-button:hover {
    color: #ffffff;
    background: #128c7e;

    transform: translateY(-4px) scale(1.08);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.50),
        0 0 0 7px rgba(37, 211, 102, 0.10);

    animation: none;
}


/* PULSE */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.40),
            0 0 0 0 rgba(37, 211, 102, 0.50);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.40),
            0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.40),
            0 0 0 0 rgba(37, 211, 102, 0);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-button {
        left: 15px;
        bottom: 15px;

        width: 50px;
        height: 50px;
        min-height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .whatsapp-button {
        right: 16px;
        bottom: 16px;

        min-height: 50px;

        padding: 0 15px;

        gap: 9px;

        font-size: 11px;
    }

    .whatsapp-button i {
        width: 28px;
        height: 28px;

        font-size: 16px;
    }

}


/* =========================================================
   30. CALL BUTTON
========================================================= */
/* =========================================================
   CALL BUTTON - LEFT BOTTOM CIRCLE
========================================================= */

.call-button {
    position: fixed;
    left: 20px;
    bottom: 88px;
    right: auto;

    z-index: 900;

    width: 56px;
    height: 56px;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: #1f6feb;

    border: 2px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 8px 25px rgba(31, 111, 235, 0.40),
        0 0 0 0 rgba(31, 111, 235, 0.50);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    animation: callPulse 2.2s infinite;
}


/* PHONE ICON */

.call-button i {
    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: transparent;

    border-radius: 0;

    font-size: 25px;
}


/* HOVER */

.call-button:hover {
    color: #ffffff;
    background: #174ea6;

    transform: translateY(-4px) scale(1.08);

    box-shadow:
        0 12px 30px rgba(31, 111, 235, 0.50),
        0 0 0 7px rgba(31, 111, 235, 0.10);

    animation: none;
}


/* PULSE */

@keyframes callPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(31, 111, 235, 0.40),
            0 0 0 0 rgba(31, 111, 235, 0.50);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(31, 111, 235, 0.40),
            0 0 0 10px rgba(31, 111, 235, 0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(31, 111, 235, 0.40),
            0 0 0 0 rgba(31, 111, 235, 0);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .call-button {
        left: 15px;
        bottom: 80px;

        width: 50px;
        height: 50px;
        min-height: 50px;
    }

    .call-button i {
        font-size: 23px;
    }

}

/* =========================================================
   30. REVEAL ANIMATIONS
========================================================= */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

.reveal {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}


/* =========================================================
   31. TABLET
========================================================= */

@media (max-width: 1100px) {

    :root {
        --header-height: 78px;
    }

    .container {
        width: min(100% - 40px, var(--container-width));
    }

    .nav-menu {
        gap: 22px;
    }

    .nav-link {
        font-size: 12px;
    }

    .header-quote {
        padding: 0 14px;
    }

    .section-padding {
        padding: 95px 0;
    }

    .about-grid {
        gap: 55px;
    }

    .owner-grid,
    .contact-wrapper {
        gap: 55px;
    }

    .product-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .project-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .blog-card {
        flex-basis: calc((100% - 25px) / 2);
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: span 1;
    }

}


/* =========================================================
   32. MOBILE / TABLET NAV
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-quote {
        display: none;
    }

    .hero-section {
        height: calc(100vh - 124px);
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: clamp(47px, 8vw, 72px);
    }

    .about-grid,
    .owner-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 650px;
    }

    .about-content {
        max-width: none;
    }

    .owner-image {
        max-width: 650px;
        height: 550px;
    }

    .contact-info {
        max-width: 650px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr;
    }

}


/* =========================================================
   33. MOBILE
========================================================= */

@media (max-width: 640px) {

    body {
        font-size: 14px;
    }

    .container {
        width: calc(100% - 32px);
    }


    /* TOP BAR */

    .top-bar-inner {
        min-height: 42px;

        justify-content: center;

        padding: 7px 0;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;

        justify-content: center;

        gap: 10px;
    }

    .top-bar-right a {
        font-size: 9px;
    }

    .top-bar-right a span {
        display: none;
    }

    .top-bar-right i {
        font-size: 12px;
    }

    .top-bar-divider {
        height: 12px;
    }


    /* HEADER */

    .header-wrapper {
        min-height: 73px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 6px;
        letter-spacing: 0.28em;
    }

    .header-icon {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }


    /* MOBILE NAV */

    .mobile-navigation {
        padding-top: 115px;
    }

    .mobile-navigation-inner {
        padding: 20px 22px 35px;
    }


    /* HERO */

    .hero-section {
        height: calc(50svh - 115px);
        min-height: 570px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(12, 12, 10, 0.4) 0%,
                rgba(12, 12, 10, 0.3) 40%,
                rgba(12, 12, 10, 0.7) 100%);
    }

    .hero-slide>.container {
        width: calc(100% - 32px);
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .hero-number {
        margin-bottom: 14px;
        font-size: 8px;
    }

    .hero-content .section-label {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .hero-content h1 {
        margin-top: 15px;

        font-size: clamp(39px, 11vw, 58px);

        line-height: 1.02;
    }

    .hero-content p {
        max-width: 320px;

        margin-top: 18px;

        font-size: 12px;
    }

    .hero-content .primary-button {
        margin-top: 24px;
    }

    .hero-controls {
        bottom: 20px;

        width: calc(100% - 32px);

        gap: 12px;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
    }

    .hero-dots {
        gap: 6px;
    }

    .hero-dot {
        width: 19px;
    }

    .hero-dot.active {
        width: 34px;
    }


    /* COMMON */

    .section-padding {
        padding: 75px 0;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;

        margin-bottom: 35px;
    }

    .section-label {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .section-title {
        margin-top: 14px;

        font-size: clamp(38px, 11vw, 53px);
    }

    .section-description {
        font-size: 13px;
    }


    /* ABOUT */

    .about-grid {
        gap: 55px;
    }

    .image-frame {
        aspect-ratio: 0.86;
    }

    .image-frame::after {
        inset: 13px;
    }

    .about-badge {
        right: -5px;
        bottom: 25px;

        width: 115px;
        height: 115px;

        border-width: 5px;
    }

    .about-badge strong {
        font-size: 18px;
    }

    .about-badge span {
        font-size: 7px;
    }

    .about-features {
        margin-top: 30px;
        gap: 18px;
    }

    .feature-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .about-feature h3 {
        font-size: 12px;
    }

    .about-feature p {
        font-size: 10px;
    }


    /* PRODUCTS */

    .slider-navigation button {
        width: 41px;
        height: 41px;
    }

    .product-slider {
        gap: 15px;
    }

    .product-card {
        flex: 0 0 84%;
        min-width: 0;
    }

    .product-image {
        height: 310px;
    }

    .product-view {
        opacity: 1;
        transform: none;
    }

    .product-content {
        padding: 23px 21px 25px;
    }

    .product-content h3 {
        font-size: 24px;
    }


    /* PROJECTS */

    .project-slider {
        gap: 15px;
    }

    .project-card {
        flex: 0 0 86%;
        min-width: 0;
        height: 460px;
    }

    .project-content {
        left: 22px;
        right: 22px;
        bottom: 23px;
    }

    .project-content h3 {
        font-size: 25px;
    }


    /* OWNER */

    .owner-grid {
        gap: 45px;
    }

    .owner-image {
        height: 450px;
    }

    .owner-content blockquote {
        margin-top: 25px;
        font-size: 23px;
    }

    .owner-content>p {
        font-size: 13px;
    }


    /* CONTACT */

    .contact-wrapper {
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 23px;
    }


    /* BLOG */

    .blog-slider {
        gap: 15px;
    }

    .blog-card {
        flex: 0 0 86%;
        min-width: 0;
    }

    .blog-image {
        height: 240px;
    }

    .blog-content {
        padding: 23px 21px 25px;
    }

    .blog-content h3 {
        font-size: 22px;
    }


    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 65px 0 50px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-brand-image {
        height: 190px;
    }

    .footer-bottom {
        min-height: auto;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 25px 0 30px;

        gap: 17px;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .back-to-top {
        position: absolute;
        right: 16px;
    }

    .site-footer .container {
        position: relative;
    }


    /* WHATSAPP */

    .whatsapp-button {
        right: 15px;
        bottom: 15px;

        width: 48px;
        height: 48px;
        min-height: 48px;

        justify-content: center;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-button span {
        display: none;
    }

    .whatsapp-button i {
        font-size: 20px;
    }

}


/* =========================================================
   34. SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .container {
        width: calc(100% - 26px);
    }

    .top-bar-right {
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-section {
        min-height: 359px;
    }

    .product-card,
    .project-card,
    .blog-card {
        flex-basis: 91%;
    }

    .contact-form-wrapper {
        padding: 22px 17px;
    }

}


/* =========================================================
   35. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}





















/* =========================================================
   SWIFT DECOR
   SHOP / PRODUCT PAGE CSS
   Compatible with current product.html
   All shop-specific classes use sdshop- prefix
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --sdshop-black: #111110;
    --sdshop-dark: #1d1d1b;
    --sdshop-dark-2: #252523;
    --sdshop-dark-3: #30302e;

    --sdshop-white: #ffffff;
    --sdshop-text: #dedbd4;
    --sdshop-muted: #99968f;

    --sdshop-gold: #c9a646;

    --sdshop-border: rgba(255, 255, 255, 0.13);

    --sdshop-container: 1180px;
}


/* =========================================================
   SHOP PAGE BOX SIZING
========================================================= */

.sdshop-hero *,
.sdshop-main *,
.sdshop-footer * {
    box-sizing: border-box;
}


/* =========================================================
   SHOP HERO
   Background image is kept in HTML
========================================================= */

.sdshop-hero {
    position: relative;
    width: 100%;
    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;

    background: #171715;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.sdshop-hero-bg {
    position: absolute;
    inset: 0;

    z-index: -2;

    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center center;

    pointer-events: none;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.sdshop-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(90deg,
            rgba(10, 10, 9, 0.84) 0%,
            rgba(10, 10, 9, 0.52) 50%,
            rgba(10, 10, 9, 0.84) 100%);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.sdshop-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 50px 20px;

    text-align: center;
}


.sdshop-hero-content h1 {
    margin: 0 0 18px;

    color: var(--sdshop-white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(50px, 7vw, 82px);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.sdshop-breadcrumb {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 20px;
}


.sdshop-breadcrumb a {
    color: var(--sdshop-white);

    text-decoration: none;

    transition: color 0.3s ease;
}


.sdshop-breadcrumb a:hover {
    color: var(--sdshop-gold);
}


.sdshop-breadcrumb span {
    color: white;
}


/* =========================================================
   MAIN SHOP AREA
========================================================= */

.sdshop-main {
    width: 100%;

    background: #242422;

    padding: 55px 0 90px;
}


/* =========================================================
   SHOP LAYOUT
========================================================= */

.sdshop-layout {
    width: min(calc(100% - 40px),
            var(--sdshop-container));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        256px minmax(0, 1fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sdshop-sidebar {
    width: 100%;
    min-width: 0;

    position: sticky;
    top: 100px;
}


/* =========================================================
   SIDEBAR TITLE
========================================================= */

.sdshop-sidebar-heading {
    width: 100%;

    min-height: 140px;

    margin-bottom: 30px;

    padding: 20px;

    border: 1px solid var(--sdshop-border);

    display: flex;

    align-items: center;
    justify-content: center;
}


.sdshop-sidebar-heading h2 {
    margin: 0;

    color: var(--sdshop-white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   CATEGORY BOX
========================================================= */

.sdshop-sidebar-category {
    width: 100%;

    padding: 24px;

    border: 1px solid var(--sdshop-border);
}


.sdshop-sidebar-category h3 {
    margin: 0 0 18px;

    color: #aaa79f;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.8px;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.sdshop-category-list {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


/* =========================================================
   CATEGORY BUTTON
========================================================= */

.sdshop-category-btn {
    width: 100%;

    margin: 0;

    padding: 12px 14px;

    border: 0;

    outline: none;

    background: transparent;

    color: #d1cec6;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.sdshop-category-btn:hover {
    background: #333331;

    color: var(--sdshop-white);
}


.sdshop-category-btn.sdshop-category-active {
    background: #333331;

    color: var(--sdshop-white);
}


/* =========================================================
   PRODUCT AREA
========================================================= */

.sdshop-product-area {
    width: 100%;

    min-width: 0;
}


/* =========================================================
   TOOLBAR
========================================================= */

.sdshop-toolbar {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 250px;

    gap: 18px;

    margin-bottom: 20px;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.sdshop-search-box {
    width: 100%;
    height: 58px;

    display: flex;
    align-items: stretch;

    background: var(--sdshop-dark-3);

    border: 1px solid var(--sdshop-border);
}


.sdshop-search-box input {
    width: 100%;
    min-width: 0;
    height: 100%;

    margin: 0;

    padding: 0 18px;

    border: 0;
    outline: none;

    background: transparent;

    color: var(--sdshop-white);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;
}


.sdshop-search-box input::placeholder {
    color: #8f8c85;
}


.sdshop-search-box button {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    margin: -1px -1px -1px 0;

    padding: 0;

    border: 0;

    border-left: 1px solid rgba(255, 255, 255, 0.08);

    outline: none;

    background: transparent;

    color: var(--sdshop-white);

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background 0.3s ease;
}


.sdshop-search-box button:hover {
    background: #393937;
}


.sdshop-search-box svg {
    display: block;

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    pointer-events: none;
}


/* =========================================================
   SORT BOX
========================================================= */

.sdshop-sort-box {
    width: 100%;
}


.sdshop-sort-box select {
    width: 100%;
    height: 58px;

    margin: 0;

    padding: 0 18px;

    border: 1px solid var(--sdshop-border);

    border-radius: 0;

    outline: none;

    background: var(--sdshop-dark-3);

    color: #d2cfc8;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    cursor: pointer;
}


.sdshop-sort-box select:focus {
    border-color:
        rgba(201, 166, 70, 0.65);
}


.sdshop-sort-box select option {
    background: #252523;

    color: #ffffff;
}


/* =========================================================
   RESULT BAR
========================================================= */

.sdshop-result-bar {
    width: 100%;

    min-height: 50px;

    margin-bottom: 24px;

    padding: 0 18px;

    background: #30302e;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    display: flex;

    align-items: center;
}


.sdshop-result-bar p {
    margin: 0;

    color: #aaa79f;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.4;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.sdshop-product-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 30px;

    row-gap: 38px;

    align-items: start;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.sdshop-product-card {
    width: 100%;
    min-width: 0;

    overflow: visible;

    animation:
        sdshopProductAppear 0.45s ease both;
}


.sdshop-product-card.sdshop-hidden {
    display: none !important;
}


/* =========================================================
   PRODUCT IMAGE BOX
========================================================= */

.sdshop-product-image-box {
    position: relative;

    width: 100%;

    /*
       Your images are 400 x 553.
       This keeps the exact portrait proportion.
    */
    aspect-ratio: 400 / 553;

    overflow: hidden;

    background: #30302e;
}


/* =========================================================
   PRODUCT IMAGE LINK
========================================================= */

.sdshop-product-image-box>a {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
}


/* =========================================================
   PRODUCT IMAGE
   IMPORTANT:
   contain = full image visible, no unwanted crop
========================================================= */

.sdshop-product-image {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: contain;

    object-position: center center;

    transition:
        transform 0.6s ease;
}


/* =========================================================
   PRODUCT IMAGE HOVER
========================================================= */

.sdshop-product-card:hover .sdshop-product-image {
    transform: scale(1.035);
}


/* =========================================================
   PRODUCT CODE
========================================================= */

.sdshop-product-code {
    position: absolute;

    left: 50%;
    bottom: 15%;

    z-index: 3;

    transform: translateX(-50%);

    padding: 6px 12px;

    background:
        rgba(255, 255, 255, 0.95);

    color: #20201e;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;

    pointer-events: none;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.sdshop-product-name {
    display: block;

    margin-top: 16px;

    color: var(--sdshop-white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.sdshop-product-name:hover {
    color: var(--sdshop-gold);
}


/* =========================================================
   PRODUCT CATEGORY
========================================================= */

.sdshop-product-category {
    margin: 6px 0 0;

    color: #8f8c85;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.4;
}


/* =========================================================
   PRODUCT PRICE
========================================================= */

.sdshop-product-price {
    margin: 7px 0 0;

    color: #d8c99f;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   PRODUCT RATING
========================================================= */

.sdshop-product-rating {
    margin: 5px 0 0;

    color: #aaa79f;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   NO RESULT
========================================================= */

.sdshop-no-result {
    display: none;

    width: 100%;

    margin-top: 20px;

    padding: 80px 20px;

    border: 1px solid var(--sdshop-border);

    text-align: center;
}


.sdshop-no-result.sdshop-show-no-result {
    display: block;
}


.sdshop-no-result-icon {
    width: 44px;
    height: 44px;

    margin: 0 auto 20px;

    border:
        1px solid var(--sdshop-gold);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--sdshop-gold);

    font-size: 25px;

    line-height: 1;
}


.sdshop-no-result h3 {
    margin: 0 0 8px;

    color: var(--sdshop-white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 600;

    line-height: 1.2;
}


.sdshop-no-result p {
    margin: 0;

    color: #8f8c85;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   PAGINATION
========================================================= */

.sdshop-pagination {
    width: 100%;

    margin-top: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    flex-wrap: wrap;
}


/* =========================================================
   PAGINATION BUTTON
========================================================= */

.sdshop-page-btn {
    min-width: 42px;
    height: 42px;

    padding: 11px;

    border:
        1px solid var(--sdshop-border);

    outline: none;

    background: #30302e;

    color: #c8c5bd;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.sdshop-page-btn:hover {
    background: #3a3a38;

    color: var(--sdshop-white);

    border-color:
        rgba(255, 255, 255, 0.25);

    transform: translateY(-1px);
}


.sdshop-page-btn.sdshop-page-active {
    background: var(--sdshop-white);

    border-color: var(--sdshop-white);

    color: #181817;
}


.sdshop-page-btn.sdshop-page-disabled {
    opacity: 0.35;

    pointer-events: none;
}


/* =========================================================
   FOOTER
========================================================= */

.sdshop-footer {
    width: 100%;

    background: var(--sdshop-black);

    border-top:
        1px solid var(--sdshop-border);

    padding: 50px 0;
}


.sdshop-footer-inner {
    width: min(calc(100% - 40px),
            var(--sdshop-container));

    margin: 0 auto;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}


.sdshop-footer-brand h2 {
    margin: 0 0 8px;

    color: var(--sdshop-white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 24px;

    font-weight: 600;

    line-height: 1.2;
}


.sdshop-footer-brand p {
    max-width: 390px;

    margin: 0;

    color: #88857e;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.6;
}


.sdshop-footer-copy p {
    margin: 0;

    color: #77746d;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.5;

    text-align: right;
}


/* =========================================================
   PRODUCT APPEAR ANIMATION
========================================================= */

@keyframes sdshopProductAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .sdshop-layout {
        grid-template-columns:
            220px minmax(0, 1fr);

        gap: 22px;
    }


    .sdshop-product-grid {
        column-gap: 18px;

        row-gap: 30px;
    }


    .sdshop-product-name {
        font-size: 16px;
    }
}


/* =========================================================
   TABLET / LARGE MOBILE
========================================================= */

@media (max-width: 780px) {

    .sdshop-hero {
        min-height: 270px;
    }


    .sdshop-main {
        padding: 38px 0 65px;
    }


    .sdshop-layout {
        width:
            calc(100% - 28px);

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .sdshop-sidebar {
        position: static;

        width: 100%;
    }


    .sdshop-sidebar-heading {
        min-height: 105px;

        margin-bottom: 20px;
    }


    .sdshop-toolbar {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .sdshop-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 15px;

        row-gap: 30px;
    }


    .sdshop-product-name {
        font-size: 16px;
    }


    .sdshop-footer-inner {
        width:
            calc(100% - 28px);

        align-items: flex-start;

        flex-direction: column;
    }


    .sdshop-footer-copy p {
        text-align: left;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sdshop-hero-content {
        padding: 40px 15px;
    }


    .sdshop-hero-content h1 {
        font-size: 58px;
    }


    .sdshop-product-code {
        bottom: 13%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdshop-hero {
        min-height: 240px;
    }


    .sdshop-hero-content {
        padding: 30px 15px;
    }


    .sdshop-hero-content h1 {
        font-size: 52px;

        letter-spacing: -0.5px;
    }


    .sdshop-breadcrumb {
        font-size: 13px;
    }


    .sdshop-product-grid {
        grid-template-columns: 1fr;

        row-gap: 35px;
    }


    .sdshop-product-name {
        font-size: 19px;
    }


    .sdshop-product-code {
        bottom: 13%;
    }


    .sdshop-page-btn {
        min-width: 38px;

        height: 38px;

        padding: 0 9px;
    }


    .sdshop-sidebar-category {
        padding: 18px;
    }


    .sdshop-search-box,
    .sdshop-sort-box select {
        height: 54px;
    }


    .sdshop-search-box button {
        width: 54px;

        height: 54px;

        flex-basis: 54px;
    }


    .sdshop-result-bar {
        padding: 0 14px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .sdshop-layout {
        width:
            calc(100% - 20px);
    }


    .sdshop-product-name {
        font-size: 17px;
    }


    .sdshop-product-code {
        padding: 5px 9px;

        font-size: 12px;
    }


    .sdshop-sidebar-category {
        padding: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sdshop-product-card {
        animation: none;
    }


    .sdshop-product-image,
    .sdshop-product-name,
    .sdshop-category-btn,
    .sdshop-page-btn,
    .sdshop-search-box button,
    .sdshop-breadcrumb a {
        transition: none;
    }
}


















/* 
===============================================================
                     all catogary 
================================================================= */













/* ==========================
        ceiling 
========================== */
/* =========================================
   SWIFT DECOR - PREMIUM GALLERY
========================================= */

.sd-gallery-section {
    width: 100%;
    padding: 100px 0;
    background: #202020;
}

.sd-gallery-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

/* Heading */

.sd-gallery-heading {
    text-align: center;
    margin-bottom: 55px;
}

.sd-gallery-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #b99662;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.sd-gallery-heading h2 {
    margin: 0 0 14px;
    color: #f5f1e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
}

.sd-gallery-heading p {
    margin: 0;
    color: #a9a9a9;
    font-size: 15px;
}

/* Grid */

.sd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */

.sd-gallery-card {
    min-width: 0;
}

/* Image */

.sd-gallery-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #292929;
}

.sd-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.sd-gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent 45%);
    opacity: 0;
    transition: opacity .4s ease;
}

.sd-gallery-card:hover .sd-gallery-image img {
    transform: scale(1.06);
}

.sd-gallery-card:hover .sd-gallery-image::after {
    opacity: 1;
}

/* Name */

.sd-gallery-name {
    display: block;
    padding: 20px 4px 0;
    color: #f2eee5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    text-decoration: none;
    transition: color .3s ease;
}

.sd-gallery-name::after {
    content: "";
    display: block;
    width: 35px;
    height: 1px;
    margin-top: 11px;
    background: #b99662;
    transition: width .3s ease;
}

.sd-gallery-name:hover {
    color: #c7a875;
}

.sd-gallery-name:hover::after {
    width: 65px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .sd-gallery-section {
        padding: 80px 0;
    }

    .sd-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .sd-gallery-section {
        padding: 65px 0;
    }

    .sd-gallery-container {
        width: 90%;
    }

    .sd-gallery-heading {
        margin-bottom: 35px;
    }

    .sd-gallery-heading h2 {
        font-size: 34px;
    }

    .sd-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 15px;
    }

    .sd-gallery-name {
        padding-top: 14px;
        font-size: 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .sd-gallery-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sd-gallery-image {
        aspect-ratio: 4 / 5;
    }

    .sd-gallery-name {
        font-size: 19px;
    }

}


















.sd-gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    padding: 18px 22px;
    background: #292929;
    border: 1px solid rgba(185, 150, 98, .18);
}

.sd-gallery-result {
    color: #aaa;
    font-size: 14px;
}

.sd-gallery-result strong {
    color: #ddd;
    font-weight: 500;
}

.sd-gallery-filter {
    display: flex;
    gap: 12px;
}

.sd-gallery-filter select {
    min-width: 190px;
    height: 50px;
    padding: 0 45px 0 18px;
    border: 1px solid rgba(185, 150, 98, .4);
    outline: none;
    background: #242424;
    color: #ddd;
    font-size: 14px;
    cursor: pointer;

    /* Custom arrow */
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #b99662 50%),
        linear-gradient(135deg, #b99662 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 21px,
        calc(100% - 14px) 21px;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.sd-gallery-filter select:hover {
    border-color: #b99662;
}

.sd-gallery-filter select:focus {
    border-color: #b99662;
    box-shadow: 0 0 0 2px rgba(185, 150, 98, .08);
}

.sd-gallery-filter option {
    background: #242424;
    color: #fff;
}


/* Tablet */

@media (max-width: 800px) {

    .sd-gallery-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sd-gallery-filter {
        width: 100%;
    }

    .sd-gallery-filter select {
        flex: 1;
        min-width: 0;
    }

}


/* Mobile */

@media (max-width: 500px) {

    .sd-gallery-toolbar {
        padding: 15px;
    }

    .sd-gallery-filter {
        flex-direction: column;
    }

    .sd-gallery-filter select {
        width: 100%;
    }

}