/* =========================================
   PREMIUM PRODUCT SHOWCASE
========================================= */

.product-showcase {
    position: relative;
    padding: 100px 20px;
    background: #fbf8f1;
    overflow: hidden;
}

.product-showcase::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(190, 125, 35, 0.07);
    top: -180px;
    left: -180px;
    pointer-events: none;
}

.product-showcase::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(118, 67, 25, 0.05);
    right: -150px;
    bottom: -150px;
    pointer-events: none;
}

.product-showcase-wrap {
    width: min(1240px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.product-showcase-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.product-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #9b5d18;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-showcase-label i {
    font-size: 15px;
}

.product-showcase-head h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #352315;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
}

.product-showcase-head h2 span {
    display: inline;
    color: #a96520;
    font-style: italic;
}

.product-showcase-head p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #75695d;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FILTER
========================================= */

.product-category-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 55px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 7px;

    background: #ffffff;
    border: 1px solid rgba(85, 55, 30, 0.10);
    border-radius: 100px;

    box-shadow: 0 12px 35px rgba(70, 43, 20, 0.08);
}

.product-category-btn {
    border: 0;
    outline: 0;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 100px;

    background: transparent;
    color: #6f6256;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-category-btn i {
    font-size: 14px;
}

.product-category-btn:hover {
    color: #8d5116;
    transform: translateY(-1px);
}

.product-category-btn.is-active {
    color: #ffffff;
    background: #9f5d18;
    box-shadow: 0 8px 20px rgba(159, 93, 24, 0.25);
}


/* =========================================
   GRID
========================================= */

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================
   CARD
========================================= */

.showcase-product {
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(75, 48, 25, 0.09);
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 10px 35px rgba(64, 40, 18, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.35s ease;
}

.showcase-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(64, 40, 18, 0.14);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.showcase-product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f3e8d5;
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.showcase-product:hover .showcase-product-image img {
    transform: scale(1.07);
}


/* Image dark gradient */

.showcase-product-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(25, 15, 8, 0.15),
            transparent 40%,
            rgba(25, 15, 8, 0.25)
        );

    pointer-events: none;
}


/* =========================================
   PRODUCT TAG
========================================= */

.showcase-product-tag {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 4;

    padding: 8px 13px;

    border-radius: 50px;

    background: rgba(255, 250, 240, 0.94);
    color: #8f541b;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    box-shadow: 0 7px 18px rgba(40, 25, 10, 0.12);
}

.showcase-tag-signature {
    color: #fff;
    background: rgba(116, 61, 21, 0.94);
}


/* =========================================
   NUMBER
========================================= */

.showcase-product-overlay {
    position: absolute;
    right: 17px;
    bottom: 15px;
    z-index: 3;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;

    color: #fff;
    background: rgba(50, 29, 13, 0.38);

    backdrop-filter: blur(8px);

    font-family: "Space Mono", monospace;
    font-size: 12px;
}


/* =========================================
   PLACEHOLDER
========================================= */

.showcase-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #d9b47d 0%,
            #a86e2d 45%,
            #603817 100%
        );

    color: rgba(255,255,255,.9);
}

.showcase-placeholder i {
    font-size: 80px;
}


/* =========================================
   CONTENT
========================================= */

.showcase-product-info {
    position: relative;
    padding: 26px 26px 27px;
}

.showcase-product-type {
    display: block;

    color: #a4621c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 7px;
}

.signature-type {
    color: #79451d;
}

.showcase-product-info h3 {
    margin: 0;

    color: #332218;

    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;
}

.showcase-product-subtitle {
    display: block;

    margin-top: 5px;

    color: #9a8c7f;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.showcase-product-info p {
    margin: 16px 0 24px;

    color: #74685d;

    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   PRODUCT ENQUIRY
========================================================= */

.product-enquiry-section {
    width: 100%;
    padding: 90px 20px;
    background: #f4eadb;
    overflow: hidden;
    box-sizing: border-box;
}

.product-enquiry-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.enquiry-heading {
    text-align: center;
    margin-bottom: 45px;
}

.enquiry-heading .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: #8c2030;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.enquiry-heading .eyebrow::before,
.enquiry-heading .eyebrow::after {
    content: "";
    width: 25px;
    height: 1px;
    background: #d29a35;
}

.enquiry-heading h2 {
    margin: 0 0 12px;

    color: #4a210d;

    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.enquiry-heading p {
    max-width: 550px;
    margin: 0 auto;

    color: #80695a;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.product-enquiry-form {
    width: 100%;
    padding: 40px;

    background: #ffffff;

    border: 1px solid rgba(140, 32, 48, 0.08);
    border-radius: 22px;

    box-shadow: 0 20px 55px rgba(78, 39, 10, 0.10);

    box-sizing: border-box;
}

.enquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;

    margin-bottom: 22px;
}

.enquiry-field {
    width: 100%;
}

.enquiry-field label {
    display: block;

    margin-bottom: 8px;

    color: #4a210d;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.enquiry-field input,
.enquiry-field textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid rgba(118, 90, 69, 0.22);
    border-radius: 10px;

    outline: none;

    background: #fcf8f2;
    color: #4a210d;

    font-family: "Poppins", sans-serif;
    font-size: 12px;

    box-sizing: border-box;

    transition: border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.enquiry-field input {
    height: 48px;
}

.enquiry-field textarea {
    min-height: 130px;
    resize: vertical;
}

.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
    color: #aa9585;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus {
    border-color: #8c2030;
    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(140, 32, 48, 0.07);
}

.enquiry-message {
    margin-bottom: 28px;
}

.enquiry-submit {
    display: flex;
    justify-content: center;
}

.enquiry-submit-btn {
    position: relative;

    width: 230px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-radius: 999px;

    background: #842318;
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    box-shadow: none;

    transition: transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.enquiry-submit-btn i {
    font-size: 19px;
}

.enquiry-submit-btn:hover {
    background: #742016;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(132, 35, 24, 0.20);
}

@media (max-width: 650px) {
    .product-enquiry-section {
        padding: 65px 15px;
    }

    .enquiry-heading {
        margin-bottom: 30px;
    }

    .enquiry-heading h2 {
        font-size: 30px;
    }

    .enquiry-heading p {
        font-size: 11px;
        max-width: 330px;
    }

    .product-enquiry-form {
        padding: 25px 18px;
        border-radius: 17px;
    }

    .enquiry-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .enquiry-field input {
        height: 46px;
    }

    .enquiry-field textarea {
        min-height: 115px;
    }

    .enquiry-submit-btn {
        width: 100%;
        max-width: 230px;
    }
}

@media (max-width: 380px) {
    .product-enquiry-section {
        padding: 50px 12px;
    }

    .enquiry-heading h2 {
        font-size: 26px;
    }

    .enquiry-heading p {
        font-size: 10px;
    }

    .product-enquiry-form {
        padding: 22px 14px;
    }

    .enquiry-field input,
    .enquiry-field textarea {
        font-size: 11px;
    }

    .enquiry-submit-btn {
        height: 48px;
        font-size: 12px;
    }
}

/* =========================================
   ACTIONS
========================================= */

.showcase-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-view-btn,
.showcase-enquire-btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 15px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.showcase-view-btn {
    flex: 1;

    color: #8f541b;
    background: #fbf5eb;
    border: 1px solid #ead8c0;
}

.showcase-view-btn:hover {
    color: #fff;
    background: #9f5d18;
    border-color: #9f5d18;
}

.showcase-view-btn i {
    transition: transform 0.3s ease;
}

.showcase-view-btn:hover i {
    transform: translateX(4px);
}

.showcase-enquire-btn {
    color: #fff;
    background: #352315;
    border: 1px solid #352315;
}

.showcase-enquire-btn:hover {
    color: #fff;
    background: #9f5d18;
    border-color: #9f5d18;
    transform: translateY(-2px);
}


/* =========================================
   FILTER ANIMATION
========================================= */

.showcase-product.is-hidden {
    display: none;
}

.showcase-product.is-visible {
    animation: productCardShow 0.45s ease both;
}

@keyframes productCardShow {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .product-showcase {
        padding: 80px 20px;
    }

    .product-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .showcase-product-image {
        height: 280px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .product-showcase {
        padding: 65px 15px;
    }

    .product-showcase-head {
        margin-bottom: 32px;
    }

    .product-showcase-head h2 {
        font-size: 32px;
    }

    .product-showcase-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-category-tabs {
        width: 100%;
        border-radius: 16px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;

        padding: 6px;

        margin-bottom: 38px;
    }

    .product-category-btn {
        width: 100%;
        min-height: 46px;
        border-radius: 11px;
    }

    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-product-image {
        height: 300px;
    }

    .showcase-product-info {
        padding: 23px 20px 22px;
    }

    .showcase-product-info h3 {
        font-size: 26px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .product-showcase {
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-showcase-head h2 {
        font-size: 32px;
    }

    .product-showcase-label {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .showcase-product-image {
        height: 260px;
    }

    .showcase-product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .showcase-view-btn,
    .showcase-enquire-btn {
        width: 100%;
    }

}