/* ==================================
   RESET
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #07101d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

button,
a {
    font: inherit;
}


/* ==================================
   HEADER
================================== */

.header {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5%;
    background: rgba(8, 16, 29, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.logo-mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d8ad2f;
    border-radius: 12px;
    color: #e2b934;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 19px;
}

.logo-text small {
    margin-top: 5px;
    color: #a0a8b5;
    font-size: 11px;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 31px;
}

.navbar a {
    position: relative;
    padding: 33px 0;
    color: #d5dae2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: #d8ad2f;
    transition: width 0.25s ease;
}

.navbar a:hover,
.navbar a.active {
    color: #e1b632;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}


/* ==================================
   HERO SECTION
================================== */

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: minmax(540px, 0.88fr) minmax(650px, 1.12fr);
    align-items: center;
    gap: 48px;
    padding: 42px 4.5% 46px;

    background:
        radial-gradient(
            circle at 77% 17%,
            rgba(211, 170, 42, 0.1),
            transparent 29%
        ),
        linear-gradient(
            125deg,
            #06101e 0%,
            #0b1525 52%,
            #070e19 100%
        );
}


/* ==================================
   HERO LEFT
================================== */

.hero-content {
    width: 100%;
    min-width: 0;
}

.hero-label {
    position: relative;
    padding-left: 24px;
    margin-bottom: 26px;
    color: #ddb532;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.hero-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 32px;
    background: #ddb532;
    transform: translateY(-50%);
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(49px, 3.8vw, 67px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.3px;
}

.hero h1 span {
    display: block;
    margin-top: 7px;
    color: #dfb731;
    white-space: nowrap;
}

.gold-line {
    width: 43px;
    height: 2px;
    margin-top: 27px;
    background: #ddb532;
}

.hero-description {
    max-width: 550px;
    margin-top: 25px;
    color: #bdc5d1;
    font-size: 17px;
    line-height: 1.78;
}


/* ==================================
   FOUR FEATURE CARDS
================================== */

.trust-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    margin-top: 29px;
}

.trust-item {
    min-width: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid rgba(215, 174, 45, 0.34);
    border-radius: 11px;
    background: rgba(11, 20, 35, 0.6);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(221, 181, 50, 0.68);
    background: rgba(18, 29, 46, 0.82);
}

.trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #dfb731;
}

.trust-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.trust-text small {
    margin-top: 4px;
    color: #9da6b4;
    font-size: 10px;
    white-space: nowrap;
}


/* ==================================
   HERO BUTTONS
================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}

.btn {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-primary {
    color: #0b1320;
    border: 1px solid #dfb731;
    background: linear-gradient(135deg, #e2b934, #d5a824);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(215, 174, 45, 0.24);
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.31);
    background: rgba(7, 14, 26, 0.36);
}

.btn-secondary:hover {
    color: #dfb731;
    border-color: #dfb731;
    transform: translateY(-3px);
}

.whatsapp-svg {
    width: 23px !important;
    height: 23px !important;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==================================
   HERO RIGHT
================================== */

.hero-visual {
    width: 100%;
    min-width: 0;
}

.showcase-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(217, 175, 45, 0.88);
    border-radius: 23px;
    background: #0b1423;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 0 38px rgba(215, 174, 45, 0.07);
}


/* ==================================
   SHOWCASE HEADER
================================== */

.showcase-header {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background:
        linear-gradient(
            105deg,
            rgba(220, 178, 47, 0.13),
            rgba(9, 18, 32, 0.25) 50%,
            rgba(9, 18, 32, 0.55)
        );
}

.featured-label {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: -24px;
    padding: 0 23px;
    color: #0b1320;
    border-radius: 0 26px 26px 0;
    background: linear-gradient(135deg, #e5bd38, #d8aa24);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.slide-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #e5e8ed;
    font-size: 13px;
    font-weight: 700;
}

.slide-number strong {
    color: #dfb731;
    font-size: 18px;
}


/* ==================================
   FEATURED IMAGE
================================== */

.showcase-image {
    position: relative;
    min-height: 470px;
    background: #07101d;
}


/* ==================================
   SLIDER ARROWS
================================== */

.slider-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(5, 12, 23, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.slider-arrow:hover {
    color: #08111e;
    border-color: #dfb731;
    background: #dfb731;
    transform: scale(1.08);
}

.arrow-left {
    left: 18px;
}

.arrow-right {
    right: 18px;
}


/* ==================================
   TRANSPARENT DESIGN PANEL
================================== */

.showcase-details {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    min-height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 19px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 17px;
    background: rgba(5, 11, 22, 0.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.design-title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.design-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(220, 178, 47, 0.48);
    border-radius: 14px;
    color: #dfb731;
    background: rgba(215, 174, 45, 0.08);
}

.design-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.design-title h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 18px;
    white-space: nowrap;
}

.design-title p {
    color: #c1c7d0;
    font-size: 12px;
    white-space: nowrap;
}

.design-meta {
    display: flex;
    align-items: center;
    gap: 21px;
    flex-shrink: 0;
}

.meta-item {
    min-width: 84px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-item small {
    color: #aab2be;
    font-size: 10px;
}

.meta-item strong {
    color: #ffffff;
    font-size: 14px;
}

.meta-divider {
    width: 1px;
    height: 43px;
    background: rgba(222, 181, 49, 0.65);
}


/* ==================================
   SLIDER DOTS
================================== */

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #5d6674;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.dot:hover {
    background: #aa8a31;
}

.dot.active {
    width: 26px;
    border-radius: 8px;
    background: #dfb731;
}


/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 1350px) {

    .hero {
        grid-template-columns: minmax(500px, 0.92fr) minmax(560px, 1.08fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .trust-features {
        gap: 8px;
    }

    .trust-item {
        padding: 10px 8px;
    }

    .trust-icon {
        width: 30px;
    }

    .trust-icon svg {
        width: 25px;
        height: 25px;
    }

    .showcase-image {
        min-height: 440px;
    }
}

@media (max-width: 1100px) {

    .navbar {
        gap: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        align-items: start;
        gap: 5px;
        padding: 50px 5% 45px;
    }

    .hero-content,
    .hero-visual {
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(48px, 7vw, 64px);
    }

    .trust-features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {

    .header {
        min-height: 76px;
        padding: 0 5%;
    }

    .navbar {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 45px 5% 38px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero-description {
        font-size: 16px;
    }

    .trust-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .showcase-image {
        min-height: 420px;
    }

    .showcase-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .design-meta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {

    .logo-text strong {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .trust-features {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 66px;
    }

    .showcase-header {
        height: 60px;
    }

    .featured-label {
        min-height: 41px;
        padding: 0 17px;
        font-size: 11px;
    }

    .showcase-image {
        min-height: 390px;
    }

    .design-title h3,
    .design-title p {
        white-space: normal;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ==================================
   CATEGORIES SECTION
================================== */

.categories-section {
    padding: 95px 4.5%;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(215, 174, 45, 0.06),
            transparent 25%
        ),
        #08111f;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-label {
    margin-bottom: 13px;
    color: #dfb731;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.section-heading h2 {
    color: #ffffff;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.15;
}

.section-description {
    max-width: 590px;
    margin: 17px auto 0;
    color: #aeb7c5;
    font-size: 16px;
    line-height: 1.7;
}

.categories-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: #101a29;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-9px);
    border-color: rgba(223, 183, 49, 0.7);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.34),
        0 0 25px rgba(215, 174, 45, 0.08);
}

.category-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}

.category-card:hover .category-image {
    transform: scale(1.07);
}

.category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 9, 18, 0.96) 5%,
            rgba(4, 9, 18, 0.45) 52%,
            rgba(4, 9, 18, 0.06) 100%
        );
}

.category-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 25px;
}

.category-count {
    display: inline-block;
    margin-bottom: 10px;
    color: #dfb731;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.category-content h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 25px;
}

.category-content a {
    display: inline-flex;
    align-items: center;
    color: #d4dae3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.category-card:hover .category-content a {
    color: #dfb731;
    transform: translateX(5px);
}


/* Temporary category backgrounds */

.category-gate {
    background-image:
        linear-gradient(#273244, #101827);
}

.category-railing {
    background-image:
        linear-gradient(135deg, #344052, #111a28);
}

.category-door {
    background-image:
        linear-gradient(135deg, #3b3028, #121923);
}

.category-grill {
    background-image:
        linear-gradient(135deg, #26323f, #0e1724);
}

.category-bed {
    background-image:
        linear-gradient(135deg, #3b3541, #121923);
}

.category-chair {
    background-image:
        linear-gradient(135deg, #3c332b, #111a27);
}

.category-staircase {
    background-image:
        linear-gradient(135deg, #293743, #101825);
}

.category-other {
    background-image:
        linear-gradient(135deg, #353243, #111925);
}


/* Categories responsive */

@media (max-width: 1150px) {
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .categories-section {
        padding: 70px 5%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 360px;
    }
}

/* ==================================
   CATALOGUE PAGE
================================== */

.catalogue-hero {
    padding: 78px 4.5% 42px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(218, 175, 47, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07101d 0%,
            #0b1524 55%,
            #07101c 100%
        );
}

.catalogue-hero-content {
    max-width: 850px;
}

.catalogue-hero h1 {
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.catalogue-hero-content > p:last-child {
    max-width: 670px;
    margin-top: 20px;
    color: #aeb8c6;
    font-size: 17px;
    line-height: 1.75;
}


/* Catalogue main section */

.catalogue-section {
    min-height: 70vh;
    padding: 45px 4.5% 90px;
    background: #08111f;
}


/* Search and filters */

.catalogue-toolbar {
    max-width: 1450px;
    margin: 0 auto 38px;
}

.catalogue-search {
    width: 100%;
}

.catalogue-search input {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    outline: none;
    background: rgba(15, 24, 39, 0.88);
    color: #ffffff;
    font-size: 15px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.catalogue-search input::placeholder {
    color: #7f8997;
}

.catalogue-search input:focus {
    border-color: rgba(218, 175, 47, 0.75);
    background: rgba(18, 29, 46, 0.96);
    box-shadow: 0 0 0 4px rgba(218, 175, 47, 0.08);
}

.catalogue-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 18px;
}

.filter-button {
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(15, 24, 39, 0.8);
    color: #c8d0dc;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.filter-button:hover {
    color: #dfb731;
    border-color: rgba(223, 183, 49, 0.55);
    transform: translateY(-2px);
}

.filter-button.active {
    color: #0b1320;
    border-color: #dfb731;
    background: #dfb731;
}


/* Design grid */

.designs-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* Design card */

.design-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(14, 23, 38, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.design-card:hover {
    transform: translateY(-7px);
    border-color: rgba(223, 183, 49, 0.65);
    box-shadow:
        0 26px 62px rgba(0, 0, 0, 0.32),
        0 0 25px rgba(223, 183, 49, 0.06);
}


/* Card image */

.design-card-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    background-color: #121c2b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.design-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 10, 19, 0.82) 0%,
            rgba(5, 10, 19, 0.12) 55%,
            rgba(5, 10, 19, 0.02) 100%
        );
}

.design-code {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(223, 183, 49, 0.52);
    border-radius: 999px;
    background: rgba(7, 13, 24, 0.7);
    backdrop-filter: blur(8px);
    color: #dfb731;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.view-design-button {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 2;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(223, 183, 49, 0.65);
    border-radius: 9px;
    background: rgba(7, 13, 24, 0.76);
    backdrop-filter: blur(9px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, 14px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.design-card:hover .view-design-button {
    opacity: 1;
    transform: translate(-50%, 0);
}

.view-design-button:hover {
    color: #0b1320;
    background: #dfb731;
}


/* Card content */

.design-card-content {
    padding: 22px;
}

.design-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #dfb731;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.design-card-content h3 {
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.25;
}

.design-card-content p {
    color: #9fa9b7;
    font-size: 14px;
    line-height: 1.65;
}


/* Empty catalogue */

.empty-catalogue {
    grid-column: 1 / -1;
    padding: 70px 25px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    text-align: center;
    background: rgba(14, 23, 38, 0.65);
}

.empty-catalogue h3 {
    color: #ffffff;
    font-size: 26px;
}

.empty-catalogue p {
    margin-top: 10px;
    color: #98a2b1;
    font-size: 15px;
}


/* Responsive */

@media (max-width: 1100px) {
    .designs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .catalogue-hero {
        padding: 58px 5% 34px;
    }

    .catalogue-section {
        padding: 35px 5% 70px;
    }

    .catalogue-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .designs-grid {
        grid-template-columns: 1fr;
    }

    .design-card-image {
        height: 280px;
    }

    .catalogue-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .filter-button {
        flex-shrink: 0;
    }
}

/* ==================================
   UPDATED CATALOGUE DESIGN CARDS
================================== */

.designs-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 28px;
}

.design-card {
    min-height: 470px;
}

.design-card-image {
    height: 345px;
}

.design-card-content {
    padding: 24px;
}

.design-category {
    margin-bottom: 9px;
    font-size: 11px;
}

.design-card-content h3 {
    margin-bottom: 10px;
    font-size: 23px;
}

.design-card-content p {
    min-height: 46px;
    font-size: 14px;
    line-height: 1.65;
}

.view-design-button {
    min-width: 135px;
    min-height: 44px;
    padding: 11px 19px;
}

@media (min-width: 1500px) {
    .designs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1050px) {
    .designs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .designs-grid {
        grid-template-columns: 1fr;
    }

    .design-card-image {
        height: 300px;
    }
}

/* ==================================
   FIXED HOME TRACK SLIDER
================================== */

.showcase-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.showcase-slider {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    background: #07101d;
}

.showcase-track {
    width: 100%;
    height: 470px;
    display: flex;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.showcase-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 470px;
    flex: 0 0 100%;
    overflow: hidden;
}

.showcase-slide img {
    width: 100%;
    height: 470px;
    display: block;
    object-fit: cover;
    object-position: center;
    user-select: none;
}

.showcase-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 9, 18, 0.74) 0%,
            rgba(4, 9, 18, 0.12) 48%,
            rgba(4, 9, 18, 0.02) 100%
        );
    pointer-events: none;
}


/* Arrows slider ke andar */

.showcase-slider .slider-arrow {
    position: absolute;
    top: 45%;
    z-index: 6;
    transform: translateY(-50%);
}

.showcase-slider .slider-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.showcase-slider .arrow-left {
    left: 18px;
}

.showcase-slider .arrow-right {
    right: 18px;
}


/* Details panel slider ke andar */

.showcase-slider .showcase-details {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 5;
}


/* Responsive */

@media (max-width: 1350px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        height: 440px;
    }
}

@media (max-width: 780px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        height: 390px;
    }

    .showcase-slider .showcase-details {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .showcase-slider .arrow-left {
        left: 10px;
    }

    .showcase-slider .arrow-right {
        right: 10px;
    }
}

/* ==================================
   MOBILE HERO COMPACT SPACING
================================== */

@media (max-width: 768px) {

    .hero {
        min-height: auto !important;
        align-items: start;
        row-gap: 14px !important;

        padding-top: 38px;
        padding-bottom: 18px;
    }

    .hero-content {
        margin: 0 auto !important;
        padding-bottom: 0;
    }

    .hero-visual {
        margin: 0 auto !important;
        padding-top: 0;
    }

    .hero-buttons {
        margin-bottom: 0;
    }
}

/* ==================================
   PREMIUM GLOBAL COLOR SYSTEM
================================== */

:root {
    --ssf-bg-deep: #06111d;
    --ssf-bg-main: #091725;
    --ssf-bg-soft: #0d1c2b;

    --ssf-surface: #102235;
    --ssf-surface-soft: #13283c;

    --ssf-steel: #8fa4b8;
    --ssf-steel-light: #c9d5df;

    --ssf-gold: #e2b934;
    --ssf-gold-bright: #f0ca4b;

    --ssf-text: #f5f7fa;
    --ssf-muted: #aab7c5;

    --ssf-border:
        rgba(176, 195, 212, 0.13);

    --ssf-gold-border:
        rgba(226, 185, 52, 0.38);
}


body {
    background:
        linear-gradient(
            135deg,
            var(--ssf-bg-deep),
            var(--ssf-bg-main)
        );

    color:
        var(--ssf-text);
}