.guw-category {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
}

.guw-category img {
    display: block;
    width: 100%;
    height: auto;
}

.guw-category h1,
.guw-category h2,
.guw-category h3,
.guw-category p {
    margin: 0;
}

.guw-category a {
    text-decoration: none;
}

.guw-category .guw-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* HERO */

.guw-category .guw-hero {
    padding: 80px 0;
}

.guw-category .guw-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.guw-category .guw-eyebrow {
    font-size: 12px;
    letter-spacing: .2em;
    margin-bottom: 15px;
    color: #888;
}

.guw-category .guw-title {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.guw-category .guw-lead {
    color: #666;
}

/* heading */

.guw-category .guw-heading {
    text-align: center;
    margin-bottom: 60px;
}

.guw-category .guw-heading h2 {
    font-size: 40px;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.guw-category .guw-heading p {
    color: #777;
}

/* lineup */

.guw-category .guw-lineup {
    padding: 100px 0px 0px 0px;
    background: #f7f7f7;
}

.guw-category .guw-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.guw-category .guw-card {
    background: #fff;
    position: relative;
    border: 1px solid #e5e5e5;
}

.guw-category .guw-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #b49a63;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    letter-spacing: .1em;
}

.guw-category .guw-card-body {
    padding: 35px;
    text-align: center;
}

.guw-category .guw-card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.guw-category .guw-card-copy {
    font-weight: 600;
    margin-bottom: 15px;
}

.guw-category .guw-card-text {
    color: #666;
    margin-bottom: 25px;
}

.guw-category .guw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    height: 52px;

    border: 1px solid #222;
    color: #222;

    transition: .3s;
}

.guw-category .guw-btn:hover {
    background: #222;
    color: #fff;
}

/* COMPARISON@*/

.guw-category .guw-comparison {
    padding: 50px 0px 100px 0px;
    background: #f7f7f7;
}

.guw-category .guw-comparison-table {
    background: #fff;
    max-width: 600px;
    border: 1px solid #e5e5e5;
    padding: 30px;
    margin: auto;
}

.guw-category .guw-comparison-table img {
    display: block;
    width: 100%;
    height: auto;
}


/* feature */

.guw-category .guw-feature {
    padding: 100px 0;
}

.guw-category .guw-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.guw-category .guw-feature-item {
    text-align: center;
}

.guw-category .guw-feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.guw-category .guw-feature-item p {
    color: #666;
}

/* color */

.guw-category .guw-color-section {
    background: #f7f7f7;
    padding: 100px 0;
}

.guw-category .guw-color-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.guw-category .guw-color-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.guw-category .guw-color-content p {
    margin-bottom: 30px;
}

.guw-category .guw-color-list span {
    display: block;
    margin-bottom: 12px;
}

.guw-category .guw-color-list i {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 10px;
}

.guw-category .guw-black {
    background: #000;
}

.guw-category .guw-khaki {
    background: #596848;
}

.guw-category .guw-coyote {
    background: #8a7351;
}

.guw-category .guw-feature-image {
    width: 120px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    overflow: hidden;
}

.guw-category .guw-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* responsive */

@media screen and (max-width:768px) {

    .guw-category .guw-title {
        font-size: 42px;
    }

    .guw-category .guw-hero-inner,
    .guw-category .guw-products,
    .guw-category .guw-color-inner {
        grid-template-columns: 1fr;
    }

    .guw-category .guw-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guw-category .guw-hero {
        padding: 50px 0;
    }

    .guw-category .guw-lineup,
    .guw-category .guw-feature,
    .guw-category .guw-color-section {
        padding: 70px 0;
    }
}