/* =====================================================
   PANGESTU GROUP
   MAIN WEBSITE STYLE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    color: #1f2933;
    background: #ffffff;
    line-height: 1.6;
}


a {
    text-decoration: none;
    color: white;
}


button,
input,
select {
    font-family: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   GENERAL CONTAINER
===================================================== */

.section-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: relative;
    z-index: 100;

    height: 96px;

    background: #002C66;

    border-bottom: 1px solid #eeeeee;
}


.nav-container {
    width: min(1400px, 94%);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 30px;
}


/* =====================================================
   BRAND
===================================================== */

.brand {
    width: 89px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.brand img {
    width: 175px;
    height: auto;
}


/* =====================================================
   NAV SEARCH
===================================================== */

.nav-search {
    width: 210px;
    height: 42px;

    display: flex;
    align-items: center;

    border: 1px solid #e5e7eb;
    border-radius: 40px;

    overflow: hidden;

    background: #fafafa;
}


.nav-search input {
    width: 100%;
    height: 100%;

    padding: 0 12px;

    border: none;
    outline: none;

    background: transparent;

    font-size: 13px;
    color: #333;
}


.nav-search input::placeholder {
    color: #9ca3af;
}


.nav-search button {
    width: 42px;
    height: 100%;

    border: none;

    background: transparent;

    cursor: pointer;

    color: #777;

    font-size: 14px;
}


/* =====================================================
   NAVIGATION MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 27px;

    margin-left: auto;
}


.nav-menu a {
    position: relative;

    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    transition: 0.25s ease;
}


.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}


.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #edc001;
}


/* =====================================================
   NAV RIGHT
===================================================== */

.nav-right {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-left: 10px;
}


.sign-in {
    font-size: 13px;
    font-weight: 500;

    color: #ffffff;
}


.sign-in:hover {
    color: #000;
}


.notification {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: black;

    font-size: 10px;
}


.globe {
    font-size: 22px;
    color: #ffffff;
}


.add-listing {
    padding: 12px 20px;

    background: #edc001;
    color: #fff;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}


.add-listing:hover {
    background: #333;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: calc(100vh - 96px);

    background-image: url("../assets/GEDUNG.jpeg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.62) 40%,
            rgba(0, 0, 0, 0.25) 75%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);

    margin: 0 auto;

    padding-top: 20px;
}


.hero-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


.hero-label span {
    width: 30px;
    height: 1px;

    background: rgba(255, 255, 255, 0.8);
}


.hero h1 {
    max-width: 760px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -2px;
}


.hero-description {
    max-width: 570px;

    margin-bottom: 40px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
}


/* =====================================================
   HERO SEARCH
===================================================== */

.hero-search {
    width: min(100%, 920px);

    min-height: 55px;

    display: flex;
    align-items: stretch;

    background: #ffffff;

    border-radius: 5px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);

    overflow: hidden;
}


/* SEARCH ITEM */

.search-item {
    flex: 1;

    min-width: 0;

    padding: 10px 20px;

    border-right: 1px solid #eeeeee;

    display: flex;
    align-items: center;

    gap: 12px;
}


.search-item label {
    margin-bottom: 5px;

    color: #777;

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.search-item input,
.search-item select {
    flex: 1;

    min-width: 0;

    width: auto;

    border: none;
    outline: none;

    background: transparent;

    color: #222;

    font-size: 13px;
}


.search-item input::placeholder {
    color: #aaa;
}


.search-item select {
    cursor: pointer;
}

.search-keyword {
    flex: 1.5;
}


.search-keyword input {
    width: 100%;
    font-size: 13px;
}


.search-filter {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}


.filter-label {
    color: #777;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}


.search-filter select {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #aaa;

    font-size: 13px;

    cursor: pointer;

    appearance: auto;
}

.search-filter select.has-value {
    color: #222;
}

/* SEARCH BUTTON */

.search-button {
    width: 125px;

    flex-shrink: 0;

    border: none;

    background: #002C66;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}


.search-button:hover {
    background: #333;
}


/* =====================================================
   ADVANCED SEARCH
===================================================== */

.advanced-button {
    margin-top: 15px;

    border: none;

    background: transparent;

    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;

    cursor: pointer;

    transition: 0.2s ease;
}


.advanced-button:hover {
    color: #ffffff;
}


/* =====================================================
   SCROLL DOWN
===================================================== */

.scroll-down {
    position: absolute;

    z-index: 3;

    left: 5%;

    bottom: 38px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 11px;

    letter-spacing: 0.8px;
}


.scroll-line {
    width: 45px;
    height: 1px;

    background: rgba(255, 255, 255, 0.7);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.catalogue-section,
.about-section,
.news-section {
    padding: 65px 0;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 50px;
}


.section-label {
    display: block;

    margin-bottom: 10px;

    color: #888;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.section-heading h2,
.about-content h2 {
    color: #161616;

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1px;
}


.view-all {
    padding-bottom: 7px;

    color: #333;

    font-size: 12px;
    font-weight: 600;

    border-bottom: 1px solid #333;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    background: #ffffff;

    border: 1px solid #eeeeee;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}


.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #eeeeee;
}


.product-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


.news-card:hover .news-image img {
    transform: scale(1.04);
}



.image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eeeeee,
            #d9d9d9
        );
}


.image-placeholder span {
    color: #777;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 700;
}


/* PRODUCT CATEGORY */

.product-category {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    background: #ffffff;

    color: #222;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {
    padding: 25px;
}


.product-location {
    margin-bottom: 8px;

    color: #999;

    font-size: 11px;
}


.product-content h3 {
    margin-bottom: 10px;

    color: #222;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.3;
}


.product-content p {
    min-height: 48px;

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


.product-link {
    color: #222;

    font-size: 12px;

    font-weight: 700;

    border-bottom: 1px solid #222;

    padding-bottom: 3px;
}


/* =====================================================
   EMPTY CATALOGUE
===================================================== */

.empty-catalogue {
    padding: 80px 30px;

    text-align: center;

    border: 1px solid #eeeeee;

    background: #fafafa;
}


.empty-icon {
    margin-bottom: 15px;

    font-size: 40px;
}


.empty-catalogue h3 {
    margin-bottom: 8px;

    color: #333;

    font-size: 20px;
}


.empty-catalogue p {
    color: #888;

    font-size: 13px;
}


/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
    background: #f6f6f4;
}


.about-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-image {
    height: 540px;

    overflow: hidden;
}


.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-content h2 {
    margin-bottom: 25px;
}


.about-content p {
    max-width: 520px;

    margin-bottom: 18px;

    color: #666;

    font-size: 14px;

    line-height: 1.9;
}


.about-button {
    display: inline-block;

    margin-top: 15px;

    padding: 13px 20px;

    background: #111;

    color: white;

    font-size: 12px;

    font-weight: 600;

    transition: 0.25s ease;
}


.about-button:hover {
    background: #333;
}


/* =====================================================
   NEWS
===================================================== */

.news-section {
    background: #ffffff;
}


.news-placeholder {
    padding: 75px 30px;

    text-align: center;

    background: #f8f8f8;

    border: 1px solid #eeeeee;
}


.news-placeholder h3 {
    margin-bottom: 8px;

    color: #222;

    font-size: 24px;
}


.news-placeholder p {
    color: #888;

    font-size: 13px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #191970;

    color: #ffffff;
}


.footer-container {
    padding-top: 75px;
    padding-bottom: 65px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-brand img {
    width: 165px;

    margin-bottom: 20px;

    filter: brightness(0) invert(1);
}


.footer-brand p {
    max-width: 300px;

    color: #999;

    font-size: 13px;

    line-height: 1.8;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-column h4 {
    margin-bottom: 10px;

    font-size: 13px;

    font-weight: 600;
}


.footer-column a {
    color: #999;

    font-size: 12px;

    transition: 0.2s ease;
}


.footer-column a:hover {
    color: #ffffff;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    border-top: 1px solid #292929;
}


.footer-bottom .section-container {
    padding: 20px 0;
}


.footer-bottom p {
    color: #777;

    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .nav-container {
        gap: 18px;
    }


    .brand {
        width: 160px;
    }


    .brand img {
        width: 150px;
    }


    .nav-search {
        width: 170px;
    }


    .nav-menu {
        gap: 18px;
    }


    .nav-right {
        gap: 10px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .navbar {
        height: auto;

        padding: 18px 0;
    }


    .nav-container {
        flex-wrap: wrap;
    }


    .brand {
        width: auto;

        margin-right: auto;
    }


    .nav-search {
        order: 3;

        width: 100%;
    }


    .nav-menu {
        order: 4;

        width: 100%;

        justify-content: center;

        margin-top: 8px;
    }


    .nav-right {
        margin-left: 0;
    }


    .hero {
        min-height: 700px;
    }


    .hero-search {
        width: 100%;

        flex-wrap: wrap;

        overflow: visible;

        background: transparent;

        box-shadow: none;

        gap: 10px;
    }


    .search-item {
        min-height: 70px;

        background: #ffffff;

        border: none;

        border-radius: 4px;
    }


    .search-button {
        width: 100%;

        min-height: 55px;

        border-radius: 4px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-image {
        height: 450px;
    }


    .footer-container {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 680px) {

    .nav-container {
        width: 90%;
    }


    .brand img {
        width: 140px;
    }


    .nav-right {
        display: none;
    }


    .nav-menu {
        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 5px;

        gap: 22px;
    }


    .nav-menu a {
        white-space: nowrap;
    }


    .hero {
        min-height: 750px;

        background-position: center;
    }


    .hero-content {
        padding-top: 0;
    }


    .hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .hero-description {
        font-size: 14px;

        margin-bottom: 30px;
    }


    .hero-search {
        flex-direction: column;

        gap: 8px;
    }


    .search-item {
        width: 100%;
    }


    .catalogue-section,
    .about-section,
    .news-section {
        padding: 75px 0;
    }


    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 35px;
    }


    .section-heading h2,
    .about-content h2 {
        font-size: 34px;
    }


    .product-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .product-image {
        height: 250px;
    }


    .about-image {
        height: 320px;
    }


    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 36px;
    }


    .hero-label {
        font-size: 10px;
    }


    .footer-container {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }

}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    padding: 45px 0 70px;
    background: #f7f8fa;
}


/* Header */

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testimonials-header h2 {
    margin-top: 7px;
    color: #111827;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}


/* Navigation */

.testimonial-navigation {
    display: flex;
    gap: 10px;
}

.testimonial-navigation button {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e4e8;
    border-radius: 50%;

    background: #ffffff;
    color: #333;

    font-size: 16px;

    cursor: pointer;
    transition: 0.25s ease;
}

.testimonial-navigation button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* Cards */

.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.testimonial-card {
    position: relative;

    min-height: 245px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e7e9ec;
    border-radius: 6px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);

    transition: 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}


/* Profile */

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 13px;
}


.testimonial-avatar {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eeeeee;

    color: #333;

    font-size: 17px;
    font-weight: 600;
}


.testimonial-profile h4 {
    margin-bottom: 5px;

    color: #1f2933;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.4px;
}


/* Stars */

.testimonial-stars {
    color: #f5b700;

    font-size: 14px;
    letter-spacing: 1px;
}


/* Quote */

.testimonial-quote {
    color: #d8dce1;

    font-family: Georgia, serif;

    font-size: 38px;
    font-weight: bold;

    line-height: 1;
}


/* Text */

.testimonial-text {
    margin-top: 22px;

    color: #7b8491;

    font-size: 13px;
    line-height: 1.75;
}


/* Button */

.testimonial-button {
    margin-top: 18px;

    padding: 9px 17px;

    border: none;
    border-radius: 3px;

    background: #111;
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}

.testimonial-button:hover {
    background: #333;
}


/* Dots */

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 27px;
}


.testimonial-dots .dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d0d3d7;

    transition: 0.25s ease;
}


.testimonial-dots .dot.active {
    width: 8px;
    height: 8px;

    background: #111;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-header h2 {
        font-size: 30px;
    }

}


@media (max-width: 600px) {

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-header {
        align-items: flex-start;
    }

    .testimonials-header h2 {
        font-size: 27px;
    }

    .testimonial-navigation button {
        width: 36px;
        height: 36px;
    }

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #ffffff;
}


/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {
    padding: 65px 0 60px;
    background: #ffffff;
}


.footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.25fr 1fr 1.25fr 1.2fr;

    gap: 60px;
}


/* =====================================================
   FOOTER COLUMN
===================================================== */

.footer-column h3 {
    margin-bottom: 25px;

    color: #1f2933;

    font-size: 17px;
    font-weight: 600;
}


.footer-company {
    padding-right: 20px;
}


/* =====================================================
   FOOTER LOGO
===================================================== */

.footer-logo {
    width: 120px;
    height: auto;

    margin-bottom: 22px;
}


.footer-description {
    max-width: 280px;

    margin-bottom: 23px;

    color: #8b94a3;

    font-size: 13px;
    line-height: 1.8;
}


.footer-hours {
    margin-bottom: 8px;

    color: #777f8c;

    font-size: 13px;
}


.footer-hours strong {
    color: #4d5968;
    font-weight: 600;
}


/* =====================================================
   HELPFUL LINKS
===================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #4c5868;

    font-size: 13px;
    font-weight: 500;

    transition: 0.25s ease;
}


.footer-links a span {
    color: #111;

    font-size: 18px;
    line-height: 1;
}


.footer-links a:hover {
    color: #111;
    padding-left: 3px;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-item {
    display: flex;
    align-items: center;

    margin-bottom: 18px;

    color: #687384;

    font-size: 13px;
}


.contact-icon {
    width: 25px;

    color: #777f8c;

    font-size: 16px;
}


.contact-label {
    width: 75px;

    color: #7b8491;

    font-weight: 500;
}


.contact-item a {
    color: #4a5565;

    font-weight: 500;

    transition: 0.25s ease;
}


.contact-item a:hover {
    color: #111;
}


/* =====================================================
   SOCIAL MEDIA
===================================================== */

.footer-social {
    display: flex;
    gap: 7px;

    margin-top: 27px;
}


.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    color: #ffffff;

    border-radius: 2px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}


.footer-social a:hover {
    background: #333;
}


/* =====================================================
   DOWNLOAD
===================================================== */

.footer-download p {
    max-width: 290px;

    margin-bottom: 22px;

    color: #8b94a3;

    font-size: 13px;
    line-height: 1.75;
}


.download-button {
    width: 100%;
    max-width: 285px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 11px;

    border-radius: 3px;

    background: #111;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}


.download-button:hover {
    background: #333;
}


.download-icon {
    font-size: 17px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    background: #f5f7fa;

    border-top: 1px solid #edf0f3;
}


.footer-bottom-container {
    width: min(1200px, 90%);
    min-height: 70px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-bottom p {
    color: #647080;

    font-size: 12px;
}


.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 10px;
}


.footer-bottom-links a {
    color: #647080;

    font-size: 12px;

    transition: 0.25s ease;
}


.footer-bottom-links a:hover {
    color: #111;
}


.footer-bottom-links span {
    color: #c4c8ce;

    font-size: 11px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 35px;
    bottom: 35px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    color: #ffffff;

    border-radius: 3px;

    font-size: 16px;

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;

    z-index: 99;
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


.back-to-top:hover {
    background: #333;
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

}


@media (max-width: 600px) {

    .footer-main {
        padding: 50px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-bottom-container {
        padding: 20px 0;

        flex-direction: column;
        gap: 12px;

        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }

}

/* =====================================================
   PRODUCT TOOLS
===================================================== */

.product-tools {
    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    z-index: 5;
}


.product-tool {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 3px;

    background: #ffffff;

    color: #191970;

    font-size: 19px;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-tool:hover {
    background: #191970;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


/* FAVORITE ACTIVE */

.favorite-btn.active {
    background: #191970;

    color: #ffffff;
}


.favorite-btn.active:hover {
    background: #11114f;

    color: #ffffff;
}

/* =====================================================
   PRODUCT DETAIL PAGE
===================================================== */

.product-detail-page {
    padding: 55px 0 90px;
    background: #ffffff;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 38px;

    color: #9aa1aa;

    font-size: 12px;
    line-height: 1.5;
}

.product-breadcrumb a {
    color: #555e69;
    text-decoration: none;

    transition: color 0.25s ease;
}

.product-breadcrumb a:hover {
    color: #191970;
}


/* =====================================================
   PRODUCT DETAIL LAYOUT
===================================================== */

.product-detail {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);

    gap: 70px;

    align-items: start;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image-area {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f2f3f5;

    border-radius: 5px;
}

.product-detail-image {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;
    object-position: center;

    border-radius: 5px;

    transition: transform 0.5s ease;
}

.product-image-area:hover .product-detail-image {
    transform: scale(1.03);
}


.product-image-placeholder {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f5f6;

    border: 1px solid #e5e7eb;

    border-radius: 5px;

    color: #a0a6ad;

    font-size: 13px;
}


/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.product-information {
    padding-top: 18px;
}


/*
   IMPORTANT:
   Menggunakan nama class khusus agar tidak bentrok
   dengan .product-category pada catalogue card.
*/

.product-information .product-category {
    position: static;

    display: inline-block;

    margin-bottom: 14px;

    padding: 0;

    background: transparent;

    color: #888f99;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.product-information h1 {
    max-width: 600px;

    margin: 0 0 16px;

    color: #111827;

    font-size: 42px;
    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1.2px;
}


/* =====================================================
   LOCATION
===================================================== */

.product-information .product-location {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #747d88;

    font-size: 13px;
}

.product-information .product-location span {
    font-size: 15px;
}


/* =====================================================
   DIVIDER
===================================================== */

.product-divider {
    width: 100%;
    height: 1px;

    margin: 30px 0;

    background: #eeeeee;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.product-description h3 {
    margin: 0 0 11px;

    color: #222222;

    font-size: 16px;
    font-weight: 600;
}

.product-description p {
    margin: 0;

    color: #7c8591;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   PRICE
===================================================== */

.product-information .product-price {
    margin-top: 28px;
    margin-bottom: 0;

    color: #191970;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
   PRODUCT ACTIONS
===================================================== */

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


/* Semua tombol */

.product-back-button,
.product-favorite-button,
.product-share-button,
.product-contact-button {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border-radius: 3px;

    font-family: inherit;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* =====================================================
   BACK BUTTON
===================================================== */

.product-back-button {
    border: 1px solid #e2e5e8;

    background: #ffffff;

    color: #555555;
}

.product-back-button:hover {
    background: #f6f6f6;

    border-color: #d7dadd;

    color: #222222;
}


/* =====================================================
   FAVORITE BUTTON
===================================================== */

.product-favorite-button {
    gap: 6px;

    border: 1px solid #e2e5e8;

    background: #ffffff;

    color: #555555;
}

.product-favorite-button:hover {
    background: #f6f6f6;

    border-color: #191970;

    color: #191970;
}


.product-favorite-button.active {
    border-color: #191970;

    background: #191970;

    color: #ffffff;
}


.product-favorite-button.active:hover {
    background: #11114f;

    border-color: #11114f;

    color: #ffffff;
}


/* =====================================================
   SHARE BUTTON
===================================================== */

.product-share-button {
    border: 1px solid #e2e5e8;

    background: #ffffff;

    color: #555555;
}

.product-share-button:hover {
    background: #f6f6f6;

    border-color: #191970;

    color: #191970;
}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.product-contact-button {
    border: 1px solid #111111;

    background: #111111;

    color: #ffffff;
}

.product-contact-button:hover {
    background: #333333;

    border-color: #333333;

    color: #ffffff;
}

/* =====================================================
   CATALOGUE PAGE
===================================================== */

.catalogue-page {
    background: #ffffff;
}


.catalogue-page .catalogue-section {
    padding: 65px 0 90px;
}


/* =====================================================
   CATALOGUE PAGE HEADING
===================================================== */

.catalogue-page-heading {
    margin-bottom: 30px;
}


.catalogue-page-heading h1 {
    margin-top: 8px;

    color: #191970;

    font-size: 34px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -0.8px;
}


.catalogue-intro {
    max-width: 650px;

    margin-top: 12px;

    color: #858d97;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   CATEGORY QUICK FILTER
===================================================== */

.catalogue-categories {
    display: flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 25px;

    border: 1px solid #e4e6e9;

    background: #ffffff;
}


.catalogue-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 110px;
    height: 42px;

    padding: 0 19px;

    border-right: 1px solid #e4e6e9;

    color: #666d76;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.catalogue-category-btn:last-child {
    border-right: none;
}


.catalogue-category-btn:hover {
    background: #f6f7f8;

    color: #191970;
}


.catalogue-category-btn.active {
    background: #191970;

    color: #ffffff;
}


.catalogue-category-btn.active:hover {
    background: #11114f;

    color: #ffffff;
}


/* =====================================================
   CATALOGUE FILTER
===================================================== */

.catalogue-filter {
    display: grid;

    grid-template-columns: 1.7fr 1fr 1fr auto;

    align-items: center;

    margin-bottom: 20px;

    border: 1px solid #e2e5e8;

    background: #ffffff;
}


.catalogue-filter-item {
    height: 52px;

    display: flex;
    align-items: center;

    border-right: 1px solid #e7e8ea;
}


.catalogue-filter-item input,
.catalogue-filter-item select {
    width: 100%;
    height: 100%;

    padding: 0 17px;

    border: none;
    outline: none;

    background: transparent;

    color: #555e69;

    font-family: inherit;

    font-size: 11px;
}


.catalogue-filter-item input::placeholder {
    color: #9ca3aa;
}


.catalogue-filter-item select {
    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #999 50%),
        linear-gradient(135deg, #999 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 35px;
}


.catalogue-filter-button {
    height: 52px;

    min-width: 105px;

    padding: 0 22px;

    border: none;

    background: #191970;

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: background 0.25s ease;
}


.catalogue-filter-button:hover {
    background: #11114f;
}


/* =====================================================
   RESULT INFORMATION
===================================================== */

.catalogue-result-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin: 27px 0 25px;

    color: #8b929a;

    font-size: 11px;
}


.catalogue-result-info strong {
    color: #333;

    font-weight: 600;
}


.catalogue-result-info a {
    color: #191970;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;
}


.catalogue-result-info a:hover {
    color: #11114f;
}


/* =====================================================
   CATALOGUE PRODUCT GRID
===================================================== */

.catalogue-page-grid {
    margin-top: 0;
}


.catalogue-page-grid .product-card {
    border: 1px solid #e5e7e9;

    background: #ffffff;

    border-radius: 5px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.catalogue-page-grid .product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.catalogue-page-grid .product-image {
    position: relative;

    width: 100%;
    height: 270px;

    overflow: hidden;

    background: #eeeeee;
}


.catalogue-page-grid .product-image img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


.catalogue-page-grid .product-card:hover
.product-image img {
    transform: scale(1.05);
}


/* =====================================================
   CATEGORY BADGE
===================================================== */

.catalogue-page-grid .product-category {
    position: absolute;

    top: 17px;
    left: 17px;

    padding: 7px 11px;

    background: #ffffff;

    color: #222222;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.catalogue-page-grid .product-content {
    padding: 21px 21px 22px;
}


.catalogue-page-grid .product-location {
    margin-bottom: 9px;

    color: #9299a2;

    font-size: 10px;
}


.catalogue-page-grid .product-content h3 {
    margin-bottom: 9px;

    color: #222222;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}


.catalogue-page-grid .product-content p {
    min-height: 47px;

    margin-bottom: 17px;

    color: #858d97;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.catalogue-card-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 15px;

    border-top: 1px solid #eeeeee;
}


.catalogue-card-price {
    color: #191970;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}


.catalogue-card-price.contact-price {
    font-size: 12px;
}


.catalogue-page-grid .product-link {
    color: #191970;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.catalogue-page-grid .product-link:hover {
    color: #111111;
}


/* =====================================================
   EMPTY CATALOGUE
===================================================== */

.catalogue-page .empty-catalogue {
    padding: 80px 20px;

    text-align: center;

    border: 1px solid #e5e7e9;

    background: #fafafa;
}


.catalogue-page .empty-icon {
    margin-bottom: 15px;

    font-size: 35px;
}


.catalogue-page .empty-catalogue h3 {
    margin-bottom: 8px;

    color: #222222;

    font-size: 20px;
    font-weight: 600;
}


.catalogue-page .empty-catalogue p {
    margin-bottom: 18px;

    color: #888f99;

    font-size: 12px;
}


/* =====================================================
   CATALOGUE RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .catalogue-filter {
        grid-template-columns: 1fr 1fr;
    }

    .catalogue-filter-item {
        border-bottom: 1px solid #e7e8ea;
    }

    .catalogue-filter-button {
        width: 100%;
    }

}


@media (max-width: 700px) {

    .catalogue-page .catalogue-section {
        padding: 45px 0 65px;
    }

    .catalogue-page-heading h1 {
        font-size: 29px;
    }

    .catalogue-categories {
        width: 100%;

        overflow-x: auto;
    }

    .catalogue-category-btn {
        min-width: 105px;
    }

    .catalogue-filter {
        grid-template-columns: 1fr;
    }

    .catalogue-filter-item {
        border-right: none;
    }

    .catalogue-filter-button {
        height: 48px;
    }

    .catalogue-result-info {
        align-items: flex-start;

        gap: 10px;

        flex-direction: column;
    }

    .catalogue-page-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .catalogue-page-heading h1 {
        font-size: 26px;
    }

    .catalogue-intro {
        font-size: 12px;
    }

    .catalogue-page-grid .product-image {
        height: 250px;
    }

}



/* =====================================================
   PRODUCT PRICE
===================================================== */

.product-price {
    margin-bottom: 10px;

    color: #191970;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.4;
}

/* =====================================================
   PRODUCT NOT FOUND
===================================================== */

.product-not-found {
    min-height: 550px;

    display: flex;
    align-items: center;

    background: #f7f8fa;
}


.not-found-box {
    text-align: center;
}


.not-found-number {
    margin-bottom: 10px;

    color: #d9dde2;

    font-size: 80px;
    font-weight: 700;

    line-height: 1;
}


.not-found-box h1 {
    margin-bottom: 10px;

    color: #111827;

    font-size: 30px;
}


.not-found-box p {
    margin-bottom: 25px;

    color: #7b8491;

    font-size: 14px;
}


/* =====================================================
   PRODUCT DETAIL RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .product-detail {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .product-information {
        padding-top: 0;
    }

    .product-detail-image,
    .product-image-placeholder {
        height: 450px;
    }

}


@media (max-width: 700px) {

    .product-detail-page {
        padding: 35px 0 60px;
    }

    .product-breadcrumb {
        margin-bottom: 25px;
    }

    .product-detail {
        gap: 35px;
    }

    .product-detail-image,
    .product-image-placeholder {
        height: 360px;
    }

    .product-information h1 {
        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .product-information .product-price {
        font-size: 18px;
    }

    .product-actions {
        align-items: stretch;

        flex-direction: column;
    }

    .product-back-button,
    .product-favorite-button,
    .product-share-button,
    .product-contact-button {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .product-detail-image,
    .product-image-placeholder {
        height: 300px;
    }

    .product-information h1 {
        font-size: 29px;
    }

}

/* =====================================================
   NEWS
===================================================== */

.news-section {
    padding: 45px 0;
    background: #ffffff;
}


.news-section .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 40px;
}


.news-section .section-heading h2 {
    margin-top: 8px;

    color: #191970;

    font-size: 32px;
    font-weight: 600;

    letter-spacing: -0.8px;
}


.news-view-all {
    color: #555;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}


.news-view-all:hover {
    color: #191970;
}


/* =====================================================
   NEWS GRID
===================================================== */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   NEWS CARD
===================================================== */

.news-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 6px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.news-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   NEWS IMAGE
===================================================== */

/* =====================================================
   NEWS IMAGE FRAME
===================================================== */

.news-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f2f2f2;
}

.news-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}


.news-card:hover .news-image img {
    transform: scale(1.04);
}


.news-category {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    border-radius: 3px;

    background: #ffffff;
    color: #333;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =====================================================
   NEWS CONTENT
===================================================== */

.news-content {
    padding: 22px 22px 25px;
}


.news-date {
    display: block;

    margin-bottom: 9px;

    color: #999;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


.news-content h3 {
    margin-bottom: 10px;

    color: #222;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}


.news-content p {
    margin-bottom: 18px;

    color: #888;

    font-size: 11px;

    line-height: 1.7;
}


.news-read-more {
    color: #191970;

    font-size: 10px;
    font-weight: 700;

    transition: 0.25s ease;
}


.news-read-more:hover {
    color: #111;
}


/* =====================================================
   RESPONSIVE NEWS
===================================================== */

@media (max-width: 900px) {

    .news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .news-section {
        padding: 70px 0;
    }


    .news-section .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .news-section .section-heading h2 {
        font-size: 27px;
    }


    .news-grid {
        grid-template-columns: 1fr;
    }


    .news-image {
        height: 220px;
    }

}

/* =====================================================
   NEWS PAGE
===================================================== */

.news-page-section {
    padding: 55px 0 100px;
    background: #fff;
    min-height: 70vh;
}


.news-page-heading {
    margin-bottom: 45px;
}


.news-page-heading .section-label {
    display: block;
    margin-bottom: 10px;

    color: #999;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.news-page-heading h1 {
    margin-bottom: 12px;

    color: #191970;

    font-size: 38px;
    font-weight: 600;

    letter-spacing: -1px;
}


.news-page-heading p {
    max-width: 600px;

    color: #888;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   NEWS GRID
===================================================== */

.news-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.news-page-grid .news-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 6px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.news-page-grid .news-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
}


/* =====================================================
   NEWS IMAGE
===================================================== */

.news-page-grid .news-image {
    position: relative;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background: #f2f2f2;
}


.news-page-grid .news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =====================================================
   EMPTY
===================================================== */

.news-empty {
    padding: 80px 20px;

    text-align: center;

    border: 1px solid #e8e8e8;
}


.news-empty h3 {
    margin-bottom: 10px;

    color: #222;

    font-size: 20px;
    font-weight: 600;
}


.news-empty p {
    color: #999;

    font-size: 12px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .news-page-section {
        padding: 110px 0 70px;
    }


    .news-page-heading h1 {
        font-size: 30px;
    }


    .news-page-grid {
        grid-template-columns: 1fr;
    }


    .news-page-grid .news-image {
        height: 220px;
    }

}

/* =====================================================
   CATALOGUE PAGE
===================================================== */

.catalogue-page {
    padding-top: 55px;
}


.catalogue-page-heading {
    margin-bottom: 15px;
}


.catalogue-page-heading h1 {
    margin-top: 8px;

    color: #191970;

    font-size: 42px;

    font-weight: 600;

    letter-spacing: -1px;
}


.catalogue-intro {
    margin-top: 15px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   CATALOGUE FILTER
===================================================== */

.catalogue-filter {

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        auto;

    gap: 12px;

    margin-top: 35px;
    margin-bottom: 30px;
}


.catalogue-filter-item input,
.catalogue-filter-item select {

    width: 100%;

    height: 50px;

    padding: 0 16px;

    border: 1px solid #e4e4e4;

    border-radius: 4px;

    background: #ffffff;

    color: #555;

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition: border-color 0.25s ease;
}


.catalogue-filter-item input:focus,
.catalogue-filter-item select:focus {

    border-color: #191970;
}


.catalogue-filter-button {

    height: 50px;

    padding: 0 28px;

    border: none;

    border-radius: 4px;

    background: #191970;

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.catalogue-filter-button:hover {

    background: #11115c;

    transform: translateY(-1px);
}


/* =====================================================
   RESULT INFO
===================================================== */

.catalogue-result-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom: 1px solid #eeeeee;

    color: #888;

    font-size: 11px;
}


.catalogue-result-info strong {

    color: #222;

    font-weight: 600;
}


.catalogue-result-info a {

    color: #191970;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;
}


.catalogue-result-info a:hover {

    text-decoration: underline;
}


/* =====================================================
   CATALOGUE PRODUCT GRID
===================================================== */

.catalogue-page-grid {

    margin-top: 0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .catalogue-filter {

        grid-template-columns:
            1fr
            1fr;
    }

}


@media (max-width: 600px) {

    .catalogue-page {

        padding-top: 80px;
    }


    .catalogue-page-heading h1 {

        font-size: 30px;
    }


    .catalogue-filter {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .catalogue-filter-button {

        width: 100%;
    }


    .catalogue-result-info {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page-hero {
    padding: 55px 0 90px;
    background: #f8f8f8;
}


.about-page-hero h1 {
    margin-top: 10px;
    color: #191970;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1.5px;
}


.about-page-hero p {
    max-width: 650px;
    margin-top: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* INTRODUCTION */

.about-page-section {
    padding: 100px 0;
    background: #ffffff;
}


.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.about-page-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}


.about-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}


.about-page-image:hover img {
    transform: scale(1.04);
}


.about-page-content .section-label {
    display: block;
}


.about-page-content h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    color: #191970;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
}


.about-page-content p {
    margin-bottom: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* COMMITMENT */

.about-page-light {
    background: #f8f8f8;
}


.about-centered-heading {
    margin-bottom: 45px;
}


.about-centered-heading h2 {
    margin-top: 8px;
    color: #191970;
    font-size: 34px;
    font-weight: 600;
}


.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.about-value-card {
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}


.about-value-number {
    margin-bottom: 25px;
    color: #191970;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


.about-value-card h3 {
    margin-bottom: 12px;
    color: #222;
    font-size: 20px;
    font-weight: 600;
}


.about-value-card p {
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}


/* VISION & MISSION */

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}


.vision-mission-item h2 {
    margin-top: 10px;
    margin-bottom: 18px;
    color: #191970;
    font-size: 30px;
    font-weight: 600;
}


.vision-mission-item p {
    max-width: 520px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* CTA */

.about-page-cta {
    padding: 90px 0;
    background: #191970;
    text-align: center;
}


.about-page-cta .section-label {
    color: #ffffff;
}


.about-page-cta h2 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
}


.about-page-cta p {
    max-width: 600px;
    margin: 15px auto 25px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.8;
}


.about-cta-button {
    display: inline-block;
    padding: 13px 22px;
    background: #ffffff;
    color: #191970;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}


.about-cta-button:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .about-page-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .about-page-hero {
        padding: 120px 0 70px;
    }


    .about-page-hero h1 {
        font-size: 34px;
    }


    .about-page-section {
        padding: 70px 0;
    }


    .about-page-grid {
        gap: 35px;
    }


    .about-page-image {
        height: 350px;
    }


    .about-page-content h2,
    .about-centered-heading h2 {
        font-size: 28px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;
    }


    .vision-mission-grid {
        gap: 45px;
    }


    .about-page-cta h2 {
        font-size: 30px;
    }

}

/* =====================================================
   FAVORITES PAGE
===================================================== */

.favorites-section {
    padding: 110px 0 100px;
    background: #ffffff;
}


.favorites-section .section-heading {
    margin-bottom: 45px;
}


.favorites-description {
    margin-top: 12px;

    color: #888;

    font-size: 12px;

    line-height: 1.7;
}


.favorites-section .product-grid {
    margin-top: 0;
}


.favorites-section .product-card {
    position: relative;
}

/* =====================================================
   FAVORITES NAV
===================================================== */

.favorites-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #191970;

    font-size: 21px;

    text-decoration: none;

    transition: all 0.25s ease;
}


.favorites-nav:hover {
    color: #11114f;

    transform: translateY(-1px);
}

/* =====================================================
   CATALOGUE PAGE
===================================================== */

.catalogue-hero {
    padding: 95px 0 85px;
    background: #f5f6f8;
    text-align: center;
}

.catalogue-hero-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #191970;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.catalogue-hero h1 {
    margin-bottom: 12px;
    color: #191970;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.catalogue-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: #888;
    font-size: 13px;
    line-height: 1.8;
}

.catalogue-section {
    padding: 85px 0 100px;
    background: #fff;
}

.catalogue-filter-bar {
    margin-bottom: 65px;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
}

.catalogue-filter-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.catalogue-filter-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.catalogue-filter-item > span {
    color: #888;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.catalogue-filter-item input,
.catalogue-filter-item select {
    width: 100%;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    background: #fff;
    color: #444;
    font-family: inherit;
    font-size: 11px;
    outline: none;
}

.catalogue-filter-item input:focus,
.catalogue-filter-item select:focus {
    border-color: #191970;
}

.catalogue-filter-button {
    height: 45px;
    padding: 0 22px;
    border: 1px solid #191970;
    border-radius: 4px;
    background: #191970;
    color: #fff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.catalogue-filter-button:hover {
    background: #11115c;
}

.catalogue-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.catalogue-heading > div:first-child > span {
    color: #999;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.catalogue-heading h2 {
    margin-top: 8px;
    color: #191970;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.7px;
}

.catalogue-result-count {
    color: #999;
    font-size: 10px;
    font-weight: 600;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.catalogue-card {
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.catalogue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.catalogue-card-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #f2f3f5;
}

.catalogue-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.catalogue-card:hover .catalogue-card-image img {
    transform: scale(1.04);
}

.catalogue-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191970;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.catalogue-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 10px;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
}

.catalogue-card-content {
    padding: 22px 22px 24px;
}

.catalogue-card-location {
    display: block;
    margin-bottom: 7px;
    color: #999;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .4px;
}

.catalogue-card-content h3 {
    margin-bottom: 10px;
    color: #222;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.catalogue-card-content p {
    min-height: 50px;
    margin-bottom: 20px;
    color: #888;
    font-size: 11px;
    line-height: 1.7;
}

.catalogue-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid #eeeeee;
}

.catalogue-sub-count {
    color: #999;
    font-size: 9px;
    font-weight: 600;
}

.catalogue-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #191970;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.catalogue-card-link span {
    font-size: 13px;
    transition: transform .25s ease;
}

.catalogue-card-link:hover {
    color: #111;
}

.catalogue-card-link:hover span {
    transform: translateX(3px);
}

.catalogue-empty {
    padding: 80px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    text-align: center;
}

.catalogue-empty-icon {
    margin-bottom: 18px;
    color: #191970;
    font-size: 30px;
}

.catalogue-empty h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 19px;
    font-weight: 600;
}

.catalogue-empty p {
    margin-bottom: 22px;
    color: #999;
    font-size: 11px;
}

.catalogue-reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    background: #191970;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .catalogue-filter-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogue-filter-button {
        width: 100%;
    }

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .catalogue-hero {
        padding: 70px 0;
    }

    .catalogue-hero h1 {
        font-size: 36px;
    }

    .catalogue-section {
        padding: 65px 0 75px;
    }

    .catalogue-filter-form {
        grid-template-columns: 1fr;
    }

    .catalogue-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-card-image {
        height: 230px;
    }

}

/* =====================================================
   CATALOGUE PAGE - PRODUCT GROUP
===================================================== */

.catalogue-v2-hero {
    padding: 75px 0 70px;
    background: #f5f6f8;
    text-align: center;
}

.catalogue-v2-hero-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #edc001;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.catalogue-v2-hero h1 {
    margin: 0 0 12px;
    color: #191970;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.4px;
}

.catalogue-v2-hero p {
    max-width: 570px;
    margin: 0 auto;
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}


/* =====================================================
   CATALOGUE CONTENT
===================================================== */

.catalogue-v2-section {
    padding: 65px 0 90px;
    background: #fff;
}


/* =====================================================
   FILTER
===================================================== */

.catalogue-v2-filter-bar {
    position: relative;
    z-index: 5;
    margin: -20px 0 60px;
    padding: 18px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.catalogue-filter-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.catalogue-filter-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.catalogue-filter-item > span {
    color: #777;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.catalogue-filter-item input,
.catalogue-filter-item select {
    width: 100%;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #dedede;
    border-radius: 4px;
    background: #fff;
    color: #444;
    font-family: inherit;
    font-size: 11px;
    outline: none;
    box-sizing: border-box;
}

.catalogue-filter-item input::placeholder {
    color: #aaa;
}

.catalogue-filter-item input:focus,
.catalogue-filter-item select:focus {
    border-color: #191970;
}

.catalogue-filter-button {
    height: 44px;
    padding: 0 25px;
    border: 1px solid #191970;
    border-radius: 4px;
    background: #191970;
    color: #fff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.catalogue-filter-button:hover {
    background: #11115c;
}


/* =====================================================
   HEADING
===================================================== */

.catalogue-v2-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.catalogue-v2-heading > div:first-child > span {
    color: #999;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.catalogue-v2-heading h2 {
    margin: 7px 0 0;
    color: #191970;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.7px;
}

.catalogue-result-count {
    color: #999;
    font-size: 10px;
    font-weight: 600;
}


/* =====================================================
   PRODUCT GROUP GRID
===================================================== */

.catalogue-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =====================================================
   PRODUCT GROUP CARD
===================================================== */

.catalogue-v2-card {
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.catalogue-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}


/* =====================================================
   CARD IMAGE
===================================================== */

.catalogue-v2-card-image {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #f2f3f5;
}

.catalogue-v2-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
    object-fit: cover;
    transition: transform .4s ease;
}

.catalogue-v2-card:hover
.catalogue-v2-card-image img {
    transform: scale(1.04);
}

.catalogue-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191970;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.catalogue-v2-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 10px;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.catalogue-v2-card-content {
    padding: 21px 22px 22px;
}

.catalogue-v2-card-location {
    display: block;
    margin-bottom: 7px;
    color: #999;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .4px;
}

.catalogue-v2-card-content h3 {
    margin: 0 0 9px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.catalogue-v2-card-content p {
    min-height: 52px;
    margin: 0 0 18px;
    color: #888;
    font-size: 11px;
    line-height: 1.7;
}


/* =====================================================
   CARD FOOTER
===================================================== */

.catalogue-v2-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
}

.catalogue-v2-sub-count {
    color: #999;
    font-size: 9px;
    font-weight: 600;
}

.catalogue-v2-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #191970;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.catalogue-v2-card-link span {
    font-size: 13px;
    transition: transform .25s ease;
}

.catalogue-v2-card-link:hover {
    color: #111;
}

.catalogue-v2-card-link:hover span {
    transform: translateX(3px);
}


/* =====================================================
   EMPTY STATE
===================================================== */

.catalogue-v2-empty {
    padding: 70px 20px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    text-align: center;
}

.catalogue-v2-empty-icon {
    margin-bottom: 15px;
    color: #191970;
    font-size: 28px;
}

.catalogue-v2-empty h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.catalogue-v2-empty p {
    margin-bottom: 20px;
    color: #999;
    font-size: 11px;
}

.catalogue-v2-reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    background: #191970;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .catalogue-filter-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogue-filter-button {
        width: 100%;
    }

    .catalogue-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .catalogue-v2-hero {
        padding: 60px 0;
    }

    .catalogue-v2-hero h1 {
        font-size: 35px;
    }

    .catalogue-v2-section {
        padding: 55px 0 70px;
    }

    .catalogue-filter-form {
        grid-template-columns: 1fr;
    }

    .catalogue-v2-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .catalogue-v2-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-v2-card-image {
        height: 225px;
    }

}

/* =====================================================
   SUB PRODUCTS
===================================================== */

.product-sub-products {
    width: 100%;

    padding: 55px 0 0;

    background: #ffffff;
}


.product-sub-products-header {
    margin-bottom: 30px;
}


.product-sub-products-header .section-label {
    display: block;

    margin-bottom: 8px;

    color: #191970;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.product-sub-products-header h2 {
    margin: 0 0 10px;

    color: #191970;

    font-size: 30px;
    font-weight: 600;

    letter-spacing: -0.8px;

    line-height: 1.2;
}


.product-sub-products-header p {
    margin: 0;

    color: #8b96a8;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   SUB PRODUCT GRID
===================================================== */

.product-sub-products-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px;
}


/* =====================================================
   SUB PRODUCT CARD
===================================================== */

.product-sub-product-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6e8ec;

    border-radius: 5px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-sub-product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   SUB PRODUCT IMAGE
===================================================== */

.product-sub-product-image {
    position: relative;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background: #f3f4f6;
}


.product-sub-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.product-sub-product-card:hover
.product-sub-product-image img {
    transform: scale(1.04);
}


.product-sub-product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3f4f6;

    color: #a4acb8;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* =====================================================
   SUB PRODUCT CONTENT
===================================================== */

.product-sub-product-content {
    padding: 22px 22px 24px;
}


.product-sub-product-content h3 {
    margin: 0 0 10px;

    color: #222222;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}


.product-sub-product-content p {
    margin: 0 0 18px;

    color: #8b96a8;

    font-size: 11px;

    line-height: 1.7;
}


.product-sub-product-price {
    color: #191970;

    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .product-sub-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .product-sub-products {
        padding-top: 45px;
    }


    .product-sub-products-header h2 {
        font-size: 27px;
    }


    .product-sub-products-grid {
        grid-template-columns: 1fr;
    }


    .product-sub-product-image {
        height: 220px;
    }

}

/* =====================================================
   FIX PRODUCT DETAIL
===================================================== */

.product-detail-page {
    padding: 55px 0 90px;
    background: #ffffff;
}


.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 40px;

    color: #8b96a8;

    font-size: 11px;
    line-height: 1.5;
}


.product-breadcrumb a {
    color: #536174;
    transition: 0.2s ease;
}


.product-breadcrumb a:hover {
    color: #191970;
}


.product-detail {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 55px 0 90px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);

    gap: 70px;

    align-items: start;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image-area {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f2f3f5;

    border: 1px solid #e1e4e8;

    border-radius: 5px;
}


.product-detail-image {
    width: 100%;
    height: 500px;

    display: block;

    object-fit: cover;
}


.product-image-placeholder {
    width: 100%;
    height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f2f3f5;
}

.product-image-placeholder span {
    color: #a4acb8;

    font-size: 12px;
}


.product-image-placeholder span {
    color: #a4acb8;

    font-size: 12px;
}


/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.product-information {
    width: 100%;
    min-width: 0;

    padding-top: 18px;
}


.product-information .product-category {
    position: static;

    display: inline-block;

    margin-bottom: 18px;

    color: #191970;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.product-information h1 {
    margin: 0 0 15px;

    color: #111827;

    font-size: 42px;
    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1px;
}


.product-information .product-location {
    display: block;

    margin-bottom: 32px;

    color: #7d8795;

    font-size: 12px;
}


.product-divider {
    width: 100%;
    height: 1px;

    margin-bottom: 32px;

    background: #e6e8ec;
}


.product-information .product-description {
    margin-bottom: 28px;
}


.product-information .product-description h3 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 15px;
    font-weight: 600;
}


.product-information .product-description p {
    margin: 0;

    color: #7d8795;

    font-size: 12px;

    line-height: 1.8;
}


.product-information .product-price {
    margin-bottom: 30px;

    color: #191970;

    font-size: 20px;
    font-weight: 700;
}


/* =====================================================
   PRODUCT ACTIONS
===================================================== */

.product-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}


.product-back-button,
.product-favorite-button,
.product-share-button,
.product-contact-button {
    min-height: 43px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border: 1px solid #dfe3e8;

    border-radius: 4px;

    background: #ffffff;

    color: #263238;

    font-family: inherit;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.product-back-button:hover,
.product-favorite-button:hover,
.product-share-button:hover {
    background: #f7f8fa;

    border-color: #191970;

    color: #191970;
}


.product-contact-button {
    background: #191970;

    border-color: #191970;

    color: #ffffff;
}


.product-contact-button:hover {
    background: #11115c;

    border-color: #11115c;

    color: #ffffff;
}


/* =====================================================
   RESPONSIVE PRODUCT DETAIL
===================================================== */

@media (max-width: 900px) {

    .product-detail {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .product-information {
        padding-top: 0;
    }


    .product-information h1 {
        font-size: 34px;
    }

}


@media (max-width: 600px) {

    .product-detail-page {
        padding: 40px 0 70px;
    }


    .product-detail-image,
    .product-image-placeholder {
        height: 350px;
    }


    .product-information h1 {
        font-size: 30px;
    }


    .product-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .product-back-button,
    .product-favorite-button,
    .product-share-button,
    .product-contact-button {
        width: 100%;
    }

}

@media (max-width: 900px) {

    .product-detail {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-left: 25px;
        padding-right: 25px;
    }

}


@media (max-width: 600px) {

    .product-detail {
        padding-top: 35px;
        padding-bottom: 60px;

        padding-left: 18px;
        padding-right: 18px;
    }


    .product-sub-products {
        padding-top: 45px;
    }


    .product-sub-products-grid {
        grid-template-columns: 1fr;
    }


    .product-detail-image,
    .product-image-placeholder {
        height: 400px;
    }

}

/* =====================================================
   NEWS DETAIL PAGE
===================================================== */

.news-detail-section {
    padding: 90px 0 110px;
    background: #ffffff;
}

.news-detail-back {
    display: inline-block;
    margin-bottom: 35px;
    color: #0b3b78;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.news-detail-back:hover {
    text-decoration: underline;
}


.news-detail {
    max-width: 950px;
    margin: 0 auto;
}


.news-detail-category {
    display: inline-block;
    padding: 8px 15px;
    background: #f2f6fb;
    color: #0b3b78;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}


.news-detail-title {
    margin: 0;
    color: #111827;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    max-width: 850px;
}


.news-detail-date {
    margin-top: 18px;
    margin-bottom: 40px;
    color: #8a94a6;
    font-size: 14px;
}


.news-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
}


.news-detail-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
}


.news-detail-excerpt {
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 4px solid #0b3b78;
    background: #f7f9fc;
    color: #526071;
    font-size: 18px;
    line-height: 1.7;
}


.news-detail-content {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}


.news-detail-content p {
    margin-bottom: 20px;
}


.news-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}


.news-detail-back-button {
    display: inline-flex;
    align-items: center;
    padding: 13px 22px;
    background: #0b3b78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}


.news-detail-back-button:hover {
    background: #082e5f;
}


.news-not-found {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
}


.news-not-found h1 {
    margin: 15px 0;
    font-size: 42px;
    color: #111827;
}


.news-not-found p {
    margin-bottom: 30px;
    color: #7b8794;
    line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .news-detail-section {
        padding: 60px 20px 80px;
    }

    .news-detail-title {
        font-size: 34px;
    }

    .news-detail-excerpt {
        padding: 20px;
        font-size: 16px;
    }

    .news-detail-content {
        font-size: 15px;
    }

}