/* =========================
   CATALOG PAGE
========================= */


/* Active Catalog Navigation */

.active-nav-link {
    color: #d5a62b;
}



/* =========================
   CATALOG HERO
========================= */

.catalog-page-hero {
    position: relative;

    width: 100%;

    min-height: 310px;

    background-image: url("../Images/placeholder.jpg");

    background-size: cover;

    background-position: center;

    border-bottom: 1px solid #332814;
}


.catalog-page-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 15, 0.94) 0%,
            rgba(4, 10, 15, 0.82) 45%,
            rgba(4, 10, 15, 0.62) 100%
        );
}


.catalog-page-hero-container {
    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 1500px;

    min-height: 310px;

    margin: 0 auto;

    padding: 50px 65px;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}



/* Hero Title */

.catalog-page-intro h1 {
    color: #f4f1e8;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: clamp(55px, 6vw, 88px);

    font-weight: normal;

    line-height: 0.9;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.catalog-page-intro p {
    color: #ded9cf;

    font-size: 17px;

    line-height: 1.5;
}



/* =========================
   CATALOG SEARCH
========================= */

.catalog-search-area {
    width: 100%;
}


.catalog-search-form {
    display: flex;

    width: 100%;

    margin-bottom: 22px;
}


.catalog-search-input {
    flex: 1;

    min-width: 0;

    height: 62px;

    padding: 0 23px;

    background-color: rgba(3, 9, 14, 0.92);

    color: #f4f1e8;

    border: 1px solid #b98619;

    border-right: none;

    outline: none;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
}


.catalog-search-input::placeholder {
    color: #85827c;
}


.catalog-search-input:focus {
    border-color: #e0ac2e;
}


.catalog-search-button {
    width: 72px;

    height: 62px;

    background-color: #d5a62b;

    color: #050b10;

    border: 1px solid #d5a62b;

    font-size: 28px;

    cursor: pointer;
}


.catalog-search-button:hover {
    background-color: #ebbd42;
}



/* =========================
   FILTER BUTTONS
========================= */

.catalog-filter-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.catalog-filter-button {
    min-width: 105px;

    height: 43px;

    padding: 0 22px;

    background-color: rgba(5, 11, 16, 0.82);

    color: #f4f1e8;

    border: 1px solid #9c721c;

    border-radius: 3px;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.catalog-filter-button:hover,
.catalog-filter-button.active-filter {
    background-color: #d5a62b;

    color: #050b10;
}



/* =========================
   MAIN CATALOG AREA
========================= */

.full-catalog-section {
    width: 100%;

    background:
        radial-gradient(
            circle at top,
            #0b151c 0%,
            #050b10 45%
        );

    padding: 55px 0 70px;
}


.full-catalog-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 0 65px;
}



/* =========================
   CATEGORY SECTIONS
========================= */

.catalog-category-section {
    margin-bottom: 65px;
}


.catalog-section-title {
    display: grid;

    grid-template-columns: 1fr auto 1fr auto;

    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}


.catalog-title-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #8b651d
        );
}


.catalog-section-title .catalog-title-line:nth-of-type(2) {
    background:
        linear-gradient(
            90deg,
            #8b651d,
            transparent
        );
}


.catalog-section-title h2 {
    color: #f4f1e8;

    font-size: clamp(27px, 3vw, 38px);

    font-weight: normal;

    white-space: nowrap;
}


.catalog-section-title a {
    color: #d5a62b;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    white-space: nowrap;
}


.catalog-section-title a:hover {
    color: #ebbd42;
}



/* =========================
   CATALOG GRID
========================= */

.catalog-row {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 18px;
}



/* =========================
   CATALOG CARDS
========================= */

.full-catalog-card {
    width: 100%;

    background-color: rgba(5, 11, 16, 0.82);

    border: 1px solid #6f5018;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.full-catalog-card:hover {
    transform: translateY(-4px);

    border-color: #d5a62b;
}


.full-card-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background-color: #131b21;
}


.full-card-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}


.full-catalog-card:hover .full-card-image img {
    transform: scale(1.035);
}


.full-card-category {
    position: absolute;

    top: 10px;

    left: 10px;

    padding: 6px 9px;

    background-color: #4b335c;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 0.7px;
}



/* Card Text */

.full-card-content {
    padding: 15px 13px 16px;

    text-align: center;
}


.full-card-content h3 {
    min-height: 52px;

    color: #f4f1e8;

    font-size: 20px;

    font-weight: normal;

    line-height: 1.15;

    margin-bottom: 10px;
}


.full-card-content p {
    color: #a8a49a;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    margin-bottom: 17px;
}


.full-card-link {
    color: #d5a62b;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


.full-card-link:hover {
    color: #ebbd42;
}



/* =========================
   BROWSE BY FORMAT
========================= */

.browse-format-section {
    padding-top: 5px;
}


.browse-format-heading {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 20px;

    align-items: center;

    margin-bottom: 30px;
}


.browse-format-heading div {
    height: 1px;

    background-color: #5d451b;
}


.browse-format-heading h2 {
    color: #f4f1e8;

    font-size: clamp(25px, 3vw, 34px);

    font-weight: normal;

    white-space: nowrap;
}


.browse-format-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #3e321d;

    border-bottom: 1px solid #3e321d;
}


.format-card {
    min-height: 140px;

    padding: 28px 30px;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 20px;

    align-items: start;

    color: #f4f1e8;

    text-decoration: none;

    border-right: 1px solid #5b451d;
}


.format-card:last-child {
    border-right: none;
}


.format-icon {
    color: #d5a62b;

    font-size: 52px;

    line-height: 1;
}


.format-card h3 {
    color: #f4f1e8;

    font-size: 21px;

    font-weight: normal;

    margin-bottom: 6px;
}


.format-card p {
    color: #b7b2a8;

    font-size: 14px;

    line-height: 1.45;

    margin-bottom: 10px;
}


.format-card span {
    color: #d5a62b;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


.format-card:hover span {
    color: #ebbd42;
}



/* =========================
   CATALOG NEWSLETTER
========================= */

.catalog-newsletter-section {
    width: 100%;

    background-color: #0a1116;

    border-top: 1px solid #72531b;

    border-bottom: 1px solid #72531b;
}


.catalog-newsletter-container {
    width: 100%;

    max-width: 1500px;

    min-height: 150px;

    margin: 0 auto;

    padding: 30px 65px;

    display: grid;

    grid-template-columns: 1fr 430px;

    gap: 55px;

    align-items: center;
}


.catalog-newsletter-text {
    display: flex;

    align-items: center;

    gap: 20px;
}


.catalog-mail-icon {
    color: #d5a62b;

    font-size: 38px;
}


.catalog-newsletter-text h2 {
    color: #f4f1e8;

    font-size: 27px;

    font-weight: normal;

    margin-bottom: 8px;
}


.catalog-newsletter-text p {
    color: #bdb8ae;

    font-size: 14px;

    line-height: 1.45;
}


.catalog-newsletter-form {
    display: flex;

    width: 100%;
}


.catalog-newsletter-form input {
    flex: 1;

    min-width: 0;

    height: 48px;

    padding: 0 15px;

    background-color: #f4f1e8;

    color: #050b10;

    border: none;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;
}


.catalog-newsletter-form button {
    height: 48px;

    padding: 0 24px;

    background-color: #d5a62b;

    color: #050b10;

    border: none;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


.catalog-newsletter-form button:hover {
    background-color: #ebbd42;
}



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

@media (max-width: 1100px) {

    .catalog-page-hero-container {
        grid-template-columns: 1fr 1.4fr;

        gap: 40px;

        padding-left: 35px;

        padding-right: 35px;
    }


    .full-catalog-container {
        padding-left: 35px;

        padding-right: 35px;
    }


    .catalog-row {
        grid-template-columns: repeat(3, 1fr);

        gap: 25px;
    }


    .browse-format-grid {
        grid-template-columns: 1fr;
    }


    .format-card {
        border-right: none;

        border-bottom: 1px solid #5b451d;
    }


    .format-card:last-child {
        border-bottom: none;
    }


    .catalog-newsletter-container {
        padding-left: 35px;

        padding-right: 35px;

        grid-template-columns: 1fr 360px;
    }

}



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

@media (max-width: 800px) {

    .catalog-page-hero-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 25px;
    }


    .catalog-page-hero {
        min-height: 440px;
    }


    .catalog-page-hero-container {
        min-height: 440px;
    }


    .catalog-page-intro h1 {
        font-size: 58px;
    }


    .catalog-section-title {
        grid-template-columns: 1fr auto 1fr;
    }


    .catalog-section-title a {
        grid-column: 1 / -1;

        justify-self: center;
    }


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


    .catalog-newsletter-container {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 35px 25px;
    }

}



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

@media (max-width: 520px) {

    .catalog-page-hero-container {
        padding-left: 20px;

        padding-right: 20px;
    }


    .catalog-page-intro h1 {
        font-size: 49px;
    }


    .catalog-search-input {
        height: 54px;

        font-size: 14px;

        padding: 0 15px;
    }


    .catalog-search-button {
        width: 58px;

        height: 54px;
    }


    .catalog-filter-buttons {
        gap: 10px;
    }


    .catalog-filter-button {
        flex: 1 1 calc(50% - 10px);

        min-width: 0;

        padding: 0 10px;
    }


    .full-catalog-section {
        padding-top: 45px;
    }


    .full-catalog-container {
        padding-left: 20px;

        padding-right: 20px;
    }


    .catalog-category-section {
        margin-bottom: 55px;
    }


    .catalog-row {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .full-catalog-card {
        max-width: 330px;

        margin: 0 auto;
    }


    .catalog-section-title h2 {
        font-size: 25px;
    }


    .browse-format-heading h2 {
        font-size: 24px;
    }


    .format-card {
        grid-template-columns: 55px 1fr;

        padding: 25px 15px;
    }


    .format-icon {
        font-size: 42px;
    }


    .catalog-newsletter-text {
        align-items: flex-start;
    }


    .catalog-newsletter-form {
        flex-direction: column;
    }


    .catalog-newsletter-form input,
    .catalog-newsletter-form button {
        width: 100%;
    }

}