/* =========================================
   RESET & BASE
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #f8f8f6;

    color: #1c1c1c;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 100;

    background: #ffffff;

    border-bottom: 1px solid #e8e8e8;
}

.header-container {
    max-width: 1200px;

    margin: auto;

    padding: 20px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    color: #171717;

    text-decoration: none;

    font-size: 21px;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.navigation {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-link {
    color: #555;

    text-decoration: none;

    font-size: 15px;
}

.nav-link:hover {
    color: #111;
}

.contact-btn {
    background: #171717;

    color: #ffffff;

    text-decoration: none;

    padding: 11px 20px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition: background 0.2s ease;
}

.contact-btn:hover {
    background: #333;
}


/* =========================================
   HERO
========================================= */

.hero {
    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}

.hero-content {
    max-width: 1200px;

    margin: auto;

    padding: 90px 30px 85px;
}

.eyebrow {
    margin: 0 0 14px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #777;
}

.hero h1 {
    max-width: 750px;

    margin: 0;

    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 700;
}

.hero h1 span {
    color: #777;
}

.hero-description {
    max-width: 550px;

    margin: 25px 0 0;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   PRODUCTS SECTION
========================================= */

.products-section {
    max-width: 1200px;

    margin: auto;

    padding: 75px 30px 100px;
}

.section-label {
    margin: 0 0 14px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #777;
}

.section-heading h2 {
    margin: 0;

    font-size: 32px;

    letter-spacing: -1px;
}


/* =========================================
   FILTERS
========================================= */

.filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 35px 0 40px;
}

.filter-btn {
    border: 1px solid #dedede;

    background: #ffffff;

    color: #555;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.filter-btn:hover {
    border-color: #aaa;
}

.filter-btn.active {
    background: #171717;

    border-color: #171717;

    color: #ffffff;
}


/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 10px;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image {
    height: 300px;

    background: #f4f4f2;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 25px;

    transition:
        transform 0.3s ease;
}

.product-card:hover
.product-image img {
    transform: scale(1.04);
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-info {
    padding: 20px 22px 23px;

    border-top: 1px solid #eeeeee;
}

.product-category {
    margin: 0 0 7px;

    color: #888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;
}

.product-info h3 {
    margin: 0;

    font-size: 18px;

    font-weight: 600;
}

.view-product {
    margin: 12px 0 0;

    color: #666;

    font-size: 13px;

    font-weight: 500;
}

.product-card:hover
.view-product {
    color: #111;
}


/* =========================================
   HIDDEN PRODUCTS
========================================= */

.hide {
    display: none;
}


/* =========================================
   PRODUCT MODAL
========================================= */

.product-modal {
    position: fixed;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.55);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 1000;
}

.product-modal.show {
    display: flex;
}

.modal-content {
    position: relative;

    width: 100%;

    max-width: 850px;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.2);
}

.modal-content > img {
    width: 100%;

    height: 450px;

    object-fit: contain;

    background: #f4f4f2;

    padding: 35px;
}

.modal-info {
    padding: 55px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.modal-info h2 {
    margin: 0 0 15px;

    font-size: 32px;

    letter-spacing: -1px;
}

.modal-info > p:not(.product-category) {
    color: #666;

    line-height: 1.6;

    margin-bottom: 30px;
}

.modal-contact-btn {
    display: inline-block;

    width: fit-content;

    background: #171717;

    color: #ffffff;

    padding: 13px 22px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s ease;
}

.modal-contact-btn:hover {
    background: #333;
}


/* =========================================
   MODAL CLOSE BUTTON
========================================= */

.modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    z-index: 2;

    box-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: #eeeeee;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #171717;

    color: #ffffff;

    padding: 50px 30px 25px;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-container strong {
    font-size: 18px;
}

.footer-container p {
    margin: 8px 0 0;

    color: #aaa;

    font-size: 14px;
}

.footer-contact {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
}

.footer-contact:hover {
    text-decoration: underline;
}

.copyright {
    max-width: 1200px;

    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid #333;

    color: #777;

    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .header-container {
        padding: 17px 20px;
    }

    .navigation {
        gap: 15px;
    }

    .nav-link {
        display: none;
    }

    .hero-content {
        padding: 65px 20px;
    }

    .hero h1 {
        font-size: 44px;

        letter-spacing: -1.8px;
    }

    .products-section {
        padding: 55px 20px 70px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .product-image {
        height: 230px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .footer-container {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .modal-content {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .modal-content > img {
        height: 280px;
    }

    .modal-info {
        padding: 30px;
    }

    .modal-info h2 {
        font-size: 25px;
    }
}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 500px) {

    .logo {
        font-size: 18px;
    }

    .contact-btn {
        padding: 9px 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 9px 14px;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-page {
    min-height: 75vh;

    background: #f8f8f6;

    padding: 60px 30px 100px;
}

.product-page-container {
    max-width: 1100px;

    margin: auto;
}


/* Back button */

.back-link {
    display: inline-block;

    margin-bottom: 25px;

    color: #555;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: #111;
}


/* Product card */

.product-detail-card {
    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 1fr;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.05);
}


/* Product image */

.product-detail-image {
    min-height: 550px;

    background: #f4f4f2;

    display: flex;

    align-items: center;

    justify-content: center;
}

.product-detail-image img {
    width: 100%;

    height: 100%;

    max-height: 550px;

    object-fit: contain;

    padding: 45px;
}


/* Product information */

.product-detail-info {
    padding: 60px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.product-detail-info h1 {
    margin: 0 0 20px;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.product-description {
    max-width: 450px;

    margin: 0 0 30px;

    color: #666;

    font-size: 16px;

    line-height: 1.7;
}


/* Contact button */

.large-contact-btn {
    display: inline-block;

    width: fit-content;

    background: #171717;

    color: #ffffff;

    text-decoration: none;

    padding: 15px 25px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.large-contact-btn:hover {
    background: #333;

    transform: translateY(-1px);
}


/* Price note */

.price-note {
    margin: 15px 0 0;

    color: #999;

    font-size: 12px;
}


/* =========================================
   PRODUCT PAGE MOBILE
========================================= */

@media (max-width: 750px) {

    .product-page {
        padding: 35px 20px 70px;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 350px;
    }

    .product-detail-image img {
        max-height: 350px;

        padding: 30px;
    }

    .product-detail-info {
        padding: 40px 30px;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-page {
    min-height: 75vh;

    background: #f8f8f6;

    padding: 60px 30px 100px;
}

.product-page-container {
    max-width: 1100px;

    margin: auto;
}


/* Back */

.back-link {
    display: inline-block;

    margin-bottom: 25px;

    color: #555;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: #111;
}


/* Product Card */

.product-detail-card {
    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 1fr;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.05);
}


/* Product Image */

.product-detail-image {
    min-height: 550px;

    background: #f4f4f2;

    display: flex;

    align-items: center;

    justify-content: center;
}

.product-detail-image img {
    width: 100%;

    height: 100%;

    max-height: 550px;

    object-fit: contain;

    padding: 45px;
}


/* Product Information */

.product-detail-info {
    padding: 60px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.product-detail-info h1 {
    margin: 0 0 20px;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.product-description {
    max-width: 450px;

    margin: 0 0 30px;

    color: #666;

    font-size: 16px;

    line-height: 1.7;
}


/* Contact for Price */

.large-contact-btn {
    display: inline-block;

    width: fit-content;

    background: #171717;

    color: #ffffff;

    text-decoration: none;

    padding: 15px 25px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.large-contact-btn:hover {
    background: #333;

    transform: translateY(-1px);
}


/* Price note */

.price-note {
    margin: 15px 0 0;

    color: #999;

    font-size: 12px;
}


/* =========================================
   PRODUCT PAGE MOBILE
========================================= */

@media (max-width: 750px) {

    .product-page {
        padding: 35px 20px 70px;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 350px;
    }

    .product-detail-image img {
        max-height: 350px;

        padding: 30px;
    }

    .product-detail-info {
        padding: 40px 30px;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    background: #f8f8f6;

    min-height: 75vh;

    padding: 80px 30px 100px;
}


/* Contact Hero */

.contact-hero {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}

.contact-hero h1 {
    margin: 10px 0 20px;

    font-size: 52px;

    letter-spacing: -2px;
}

.contact-hero p:last-child {
    color: #666;

    font-size: 17px;

    line-height: 1.7;
}


/* Contact Cards */

.contact-container {
    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.contact-card {
    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    padding: 40px;

    display: flex;

    gap: 25px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.04);
}

.contact-icon {
    width: 48px;

    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #f1f1ef;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;
}

.contact-label {
    margin: 0 0 10px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #888;
}

.contact-card h2 {
    margin: 0 0 12px;

    font-size: 22px;
}

.contact-card p {
    color: #666;

    line-height: 1.6;

    margin: 0 0 25px;
}


/* =========================================
   CONTACT PAGE MOBILE
========================================= */

@media (max-width: 750px) {

    .contact-page {
        padding: 55px 20px 70px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px;
    }

}