/* =========================================================
   EAGLE FURNITURE NGARA
   CATEGORY PAGE
   ========================================================= */

.category-hero {
    padding: 75px 0;
    background: #241b16;
    color: #ffffff;
}

.category-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #d9a441;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.category-hero h1 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 600;
}

.category-hero p {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

.category-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-hero-image {
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-hero-placeholder {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #40332b;
}

.category-hero-placeholder i {
    font-size: 90px;
    color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.category-breadcrumb {
    padding: 16px 0;
    background: #f7f4ef;
    border-bottom: 1px solid #e8e1d8;
}

.category-breadcrumb a {
    color: #765333;
    text-decoration: none;
}

.category-breadcrumb a:hover {
    color: #9a6b3f;
}


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.category-products {
    padding: 75px 0;
    background: #ffffff;
}

.category-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.section-label {
    display: block;
    margin-bottom: 7px;
    color: #9a6b3f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.category-products-header h2 {
    margin: 0;
    color: #2d211b;
    font-family: "Playfair Display", serif;
    font-size: 38px;
}

.category-products-header p {
    margin: 6px 0 0;
    color: #777777;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.category-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ebe5de;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(40, 30, 20, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(40, 30, 20, 0.13);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.category-product-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: #f0ebe5;
}

.category-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.category-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-product-card:hover .category-product-image img {
    transform: scale(1.06);
}


/* =========================================================
   BADGES
   ========================================================= */

.product-badge {
    position: absolute;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sale-badge {
    top: 15px;
    left: 15px;
    background: #c0392b;
}

.bestseller-badge {
    top: 15px;
    right: 15px;
    background: #198754;
}

.new-badge {
    bottom: 15px;
    left: 15px;
    background: #d9a441;
    color: #241b16;
}


/* =========================================================
   PRODUCT BODY
   ========================================================= */

.category-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.product-category {
    margin-bottom: 7px;
    color: #9a6b3f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-product-body h3 {
    margin: 0 0 10px;
    color: #2d211b;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.product-description {
    min-height: 45px;
    margin-bottom: 12px;
    color: #777777;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   RATING
   ========================================================= */

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #e0a82e;
    font-size: 13px;
}

.product-rating span {
    margin-left: 5px;
    color: #777777;
    font-size: 12px;
}


/* =========================================================
   PRICE
   ========================================================= */

.product-price {
    margin-bottom: 12px;
}

.product-price strong {
    display: block;
    color: #2d211b;
    font-size: 22px;
}

.old-price {
    display: block;
    margin-bottom: 2px;
    color: #999999;
    font-size: 13px;
    text-decoration: line-through;
}


/* =========================================================
   STOCK
   ========================================================= */

.stock-status {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 17px;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.in-stock {
    background: #e7f6ed;
    color: #198754;
}

.limited-stock {
    background: #fff3cd;
    color: #856404;
}

.out-stock {
    background: #f8d7da;
    color: #842029;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.product-actions {
    display: grid;
    gap: 9px;
    margin-top: auto;
}

.product-actions .btn {
    min-height: 44px;
    font-size: 13px;
    font-weight: 600;
}

.add-cart-form {
    width: 100%;
}


/* =========================================================
   EMPTY
   ========================================================= */

.category-empty {
    padding: 80px 20px;
    text-align: center;
    border: 1px dashed #d8cec3;
    border-radius: 15px;
    background: #faf8f5;
}

.category-empty i {
    display: block;
    margin-bottom: 20px;
    color: #b4a69a;
    font-size: 65px;
}

.category-empty h3 {
    color: #2d211b;
    font-family: "Playfair Display", serif;
}


/* =========================================================
   CUSTOM CTA
   ========================================================= */

.category-custom-cta {
    padding: 65px 0;
    background: #f7f4ef;
}

.custom-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    border-radius: 18px;
    background: #d9a441;
}

.custom-cta-box span {
    color: #241b16;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.custom-cta-box h2 {
    margin: 8px 0 12px;
    color: #241b16;
    font-family: "Playfair Display", serif;
    font-size: 35px;
}

.custom-cta-box p {
    max-width: 700px;
    margin: 0;
    color: #3d3026;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.category-benefits {
    padding: 75px 0;
}

.category-benefits-header {
    margin-bottom: 45px;
}

.category-benefits-header span {
    color: #9a6b3f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.category-benefits-header h2 {
    margin-top: 8px;
    color: #2d211b;
    font-family: "Playfair Display", serif;
    font-size: 38px;
}

.category-benefit {
    height: 100%;
    padding: 25px;
    text-align: center;
}

.category-benefit i {
    color: #d9a441;
    font-size: 45px;
}

.category-benefit h3 {
    margin: 17px 0 10px;
    color: #2d211b;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.category-benefit p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.category-final-cta {
    padding: 80px 0;
    background: #241b16;
    color: #ffffff;
}

.category-final-cta h2 {
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 5vw, 52px);
}

.category-final-cta p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.category-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-hero {
        padding: 60px 0;
    }

    .category-hero-image {
        height: 300px;
    }

    .custom-cta-box {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .category-hero {
        padding: 45px 0;
    }

    .category-hero h1 {
        font-size: 42px;
    }

    .category-hero p {
        font-size: 15px;
    }

    .category-hero-image {
        height: 250px;
    }

    .category-products {
        padding: 50px 0;
    }

    .category-products-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-products-header h2 {
        font-size: 32px;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .category-product-image {
        height: 270px;
    }

    .custom-cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 25px;
    }

    .custom-cta-box h2 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .category-hero h1 {
        font-size: 36px;
    }

    .category-hero-actions {
        flex-direction: column;
    }

    .category-hero-actions .btn {
        width: 100%;
    }

    .category-product-body {
        padding: 20px;
    }

    .category-product-image {
        height: 240px;
    }

    .category-final-actions {
        flex-direction: column;
    }

    .category-final-actions .btn {
        width: 100%;
    }

}

css
/* =========================================================
   SHOP BY STYLE
========================================================= */

.category-style-section {
    padding: 80px 0;
    background: #f7f4ef;
}

.style-section-header {
    max-width: 720px;
    margin-bottom: 45px;
}

.style-section-header .section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a6b35;
}

.style-section-header h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #211b16;
}

.style-section-header p {
    margin: 0;
    color: #6e665f;
    font-size: 16px;
    line-height: 1.8;
}


/* GRID */

.style-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.style-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.style-category-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    background: rgba(181, 132, 76, 0.08);
    transition: transform 0.3s ease;
}

.style-category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(181, 132, 76, 0.25);
}

.style-category-card:hover::after {
    transform: scale(1.5);
}


/* ICON */

.style-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: #211b16;
    color: #ffffff;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.style-category-card:hover .style-card-icon {
    transform: scale(1.08);
}


/* CONTENT */

.style-card-content {
    position: relative;
    z-index: 2;
}

.style-card-content h3 {
    margin: 0 0 10px;
    color: #211b16;
    font-size: 21px;
    font-weight: 700;
}

.style-card-content p {
    margin: 0 0 20px;
    color: #777069;
    font-size: 14px;
    line-height: 1.7;
}

.style-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9a6b35;
    font-size: 13px;
    font-weight: 700;
}

.style-card-link i {
    transition: transform 0.25s ease;
}

.style-category-card:hover .style-card-link i {
    transform: translateX(5px);
}


/* TABLET */

@media (max-width: 991px) {

    .style-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .category-style-section {
        padding: 55px 0;
    }

    .style-category-grid {
        grid-template-columns: 1fr;
    }

    .style-category-card {
        min-height: auto;
        padding: 25px;
    }

}

