/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #f5f1e7;
    color: #11120f;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

/* =========================================
   COLORS

   Orange: #ff8a00
   Green:  #66733b
   Dark:   #0d0f0c
   Cream:  #f5f1e7
========================================= */


/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement-bar {
    background: #ff8a00;
    color: #0d0f0c;

    padding: 10px 20px;

    text-align: center;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}


/* =========================================
   HEADER
========================================= */

.header {
    height: 95px;

    background: #080a08;

    display: flex;
    align-items: center;

    padding: 0 4%;

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.logo-link {
    width: 240px;

    display: flex;
    align-items: center;
}

.header-logo {
    width: 210px;
    max-height: 70px;

    object-fit: contain;
}

.navigation {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

.navigation a {
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;

    position: relative;

    padding: 12px 0;
}

.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: #ff8a00;

    transition: .25s ease;
}

.navigation a:hover::after {
    width: 100%;
}

.header-icons {
    width: 240px;

    display: flex;
    justify-content: flex-end;

    gap: 5px;
}

.icon-button {
    background: transparent;

    border: none;

    color: #ffffff;

    cursor: pointer;

    padding: 12px;

    font-size: 19px;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 690px;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(102,115,59,.35),
            transparent 35%
        ),

        linear-gradient(
            110deg,
            #080a08 0%,
            #11150d 55%,
            #20271b 100%
        );

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    position: relative;

    overflow: hidden;

    padding: 60px 7%;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -250px;

    border:
        1px solid
        rgba(255,138,0,.2);

    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: 130px;
    bottom: -280px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 650px;
}

.hero-small {
    color: #ff8a00;

    font-weight: 900;

    font-size: 12px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero h1 {
    color: white;

    font-size: clamp(
        60px,
        7vw,
        105px
    );

    line-height: .88;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.hero-description {
    color: #babdb6;

    max-width: 500px;

    line-height: 1.7;

    font-size: 17px;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.dark-button,
.cta-button {
    text-decoration: none;

    font-weight: 900;

    font-size: 11px;

    letter-spacing: 1.7px;

    transition: .25s ease;
}

.primary-button {
    background: #ff8a00;

    color: #0b0c09;

    padding: 18px 32px;
}

.primary-button:hover {
    background: #73814a;

    color: white;
}

.secondary-button {
    border: 1px solid #64665f;

    color: white;

    padding: 17px 32px;
}

.secondary-button:hover {
    border-color: #ff8a00;

    color: #ff8a00;
}

.hero-art {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: center;
    align-items: center;
}

.hero-art img {
    width: 100%;

    max-width: 650px;

    filter:
        drop-shadow(
            0 35px 30px
            rgba(0,0,0,.4)
        );
}


/* =========================================
   INTRO STRIP
========================================= */

.intro-strip {
    background: #ff8a00;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.intro-strip div {
    padding: 27px 35px;

    border-right:
        1px solid
        rgba(0,0,0,.18);
}

.intro-strip strong {
    display: block;

    font-size: 11px;

    letter-spacing: 1.8px;

    margin-bottom: 6px;
}

.intro-strip span {
    font-size: 12px;

    color: #563000;
}


/* =========================================
   COMMON SECTIONS
========================================= */

.categories,
.products {
    padding: 100px 7%;
}

.section-heading {
    text-align: center;

    margin-bottom: 55px;
}

.section-heading p {
    color: #66733b;

    font-weight: 900;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.section-heading h2 {
    color: #11120f;

    font-size: 43px;

    letter-spacing: -1px;
}


/* =========================================
   CATEGORIES
========================================= */

.categories {
    background: #f5f1e7;
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.category-card {
    text-decoration: none;

    color: #11120f;

    background: white;

    overflow: hidden;
}

.category-image {
    height: 420px;

    display: flex;

    align-items: flex-end;

    padding: 28px;

    position: relative;

    overflow: hidden;
}

.category-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.75)
        );
}

.category-image span {
    position: relative;
    z-index: 2;

    color: white;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: -1px;
}

.category-baits {
    background:
        linear-gradient(
            135deg,
            #5c6736,
            #252c18
        );
}

.category-floats {
    background:
        linear-gradient(
            135deg,
            #df7810,
            #873b00
        );
}

.category-tackle {
    background:
        linear-gradient(
            135deg,
            #232622,
            #0a0b09
        );
}

.category-content {
    padding: 24px;
}

.category-content h3 {
    font-size: 18px;

    margin-bottom: 8px;
}

.category-content p {
    color: #72736e;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 16px;
}

.category-link {
    color: #ff8a00;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================
   HOME PAGE PRODUCTS
========================================= */

.products {
    background: white;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.product-card {
    background: #f6f5f0;

    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.08);
}

.product-image {
    height: 330px;

    background:
        linear-gradient(
            145deg,
            #e6e4dc,
            #cfccc1
        );

    display: flex;

    justify-content: center;
    align-items: center;

    color: #86867f;

    font-size: 11px;

    letter-spacing: 2px;
}

.product-info {
    padding: 22px;
}

.product-category {
    color: #66733b;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;

    margin-bottom: 7px;
}

.product-info h3 {
    font-size: 17px;

    margin-bottom: 9px;
}

.product-description {
    color: #767871;

    font-size: 13px;

    line-height: 1.5;

    min-height: 40px;

    margin-bottom: 20px;
}

.product-bottom {
    border-top:
        1px solid
        #dcdad2;

    padding-top: 17px;
}

.price {
    font-size: 19px;

    font-weight: 900;

    margin-bottom: 14px;
}

.product-button {
    width: 100%;

    background: transparent;

    border:
        2px solid
        #11120f;

    color: #11120f;

    padding: 12px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.2px;

    transition: .2s ease;
}

.product-button:hover {
    background: #11120f;

    color: white;
}

.view-all-container {
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

.dark-button {
    background: #11120f;

    color: white;

    padding: 17px 31px;
}

.dark-button:hover {
    background: #ff8a00;

    color: #11120f;
}


/* =========================================
   BRAND SECTION
========================================= */

.brand-section {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    min-height: 690px;
}

.brand-art {
    background:
        radial-gradient(
            circle,
            #777f49,
            #3e4727
        );

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 60px;
}

.brand-art img {
    width: 100%;

    max-width: 620px;

    filter:
        drop-shadow(
            0 30px 24px
            rgba(0,0,0,.25)
        );
}

.brand-content {
    background: #0b0d0a;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 90px;
}

.brand-small {
    color: #ff8a00 !important;

    font-size: 11px !important;

    font-weight: 900;

    letter-spacing: 3px;
}

.brand-content h2 {
    font-size: 60px;

    line-height: .93;

    letter-spacing: -2px;

    margin:
        20px
        0
        30px;
}

.brand-content p {
    color: #b1b4ad;

    max-width: 530px;

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 20px;
}

.text-button {
    color: #ff8a00;

    text-decoration: none;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-top: 10px;
}


/* =========================================
   CTA
========================================= */

.cta {
    background: #ff8a00;

    color: #10110e;

    text-align: center;

    padding: 90px 20px;
}

.cta > p {
    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;
}

.cta h2 {
    font-size: 52px;

    margin: 10px 0 30px;
}

.cta-button {
    display: inline-block;

    background: #10110e;

    color: white;

    padding: 18px 32px;
}

.cta-button:hover {
    background: #66733b;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    background: #66733b;

    color: white;

    padding: 90px 20px;
}

.newsletter-content {
    max-width: 650px;

    margin: auto;

    text-align: center;
}

.newsletter-small {
    color: #171a11;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;
}

.newsletter h2 {
    font-size: 48px;

    margin: 10px 0 13px;
}

.newsletter-content > p {
    line-height: 1.6;
}

.newsletter-form {
    display: flex;

    max-width: 540px;

    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;

    border: none;

    outline: none;

    padding: 18px;
}

.newsletter-form button {
    border: none;

    background: #0b0d0a;

    color: white;

    padding: 0 28px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: #ff8a00;

    color: #11120f;
}

.newsletter-message {
    margin-top: 15px;

    font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #070807;

    color: white;

    padding:
        70px
        7%
        30px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;
}

.footer-brand img {
    width: 230px;

    max-height: 100px;

    object-fit: contain;

    object-position: left center;

    margin-bottom: 20px;
}

.footer-brand p {
    color: #777b73;

    font-size: 13px;
}

.footer-grid h4 {
    color: #ff8a00;

    margin-bottom: 20px;

    font-size: 11px;

    letter-spacing: 2px;
}

.footer-grid a {
    display: block;

    color: #9b9d97;

    text-decoration: none;

    margin-bottom: 12px;

    font-size: 13px;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;

    padding-top: 25px;

    border-top:
        1px solid
        #242624;

    color: #676a64;

    font-size: 11px;
}


/* =========================================
   SHOP PAGE
========================================= */

.shop-page {
    background: #f5f1e7;
}

.shop-hero {
    min-height: 330px;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(102,115,59,.35),
            transparent 35%
        ),

        linear-gradient(
            110deg,
            #080a08,
            #161b11
        );

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 50px 20px;

    color: white;
}

.shop-hero p {
    color: #ff8a00;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.shop-hero h1 {
    font-size: 70px;

    line-height: 1;

    margin-bottom: 18px;
}

.shop-hero span {
    color: #b8bbb4;

    font-size: 15px;
}


/* =========================================
   SHOP CONTROLS
========================================= */

.shop-controls {
    padding: 35px 7%;

    background: white;

    border-bottom:
        1px solid
        #deddd7;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 25px;
}

.shop-filter-buttons {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.filter-button {
    background: transparent;

    border:
        1px solid
        #c8c7c0;

    color: #11120f;

    padding: 11px 18px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .2s ease;
}

.filter-button:hover {
    border-color: #ff8a00;

    color: #ff8a00;
}

.filter-button.active {
    background: #11120f;

    border-color: #11120f;

    color: white;
}

.shop-sort {
    display: flex;

    align-items: center;

    gap: 10px;
}

.shop-sort label {
    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.shop-sort select {
    background: white;

    border:
        1px solid
        #c8c7c0;

    padding: 11px 35px 11px 12px;

    outline: none;

    cursor: pointer;
}


/* =========================================
   SHOP PRODUCTS
========================================= */

.shop-products {
    padding: 70px 7% 110px;
}

.shop-product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.shop-product-card {
    background: white;

    transition: .25s ease;
}

.shop-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 35px
        rgba(0,0,0,.08);
}

.shop-product-image {
    height: 390px;

    background:
        linear-gradient(
            145deg,
            #e8e6df,
            #d2cfc4
        );

    position: relative;
}

.product-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #898982;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.product-badge {
    position: absolute;

    left: 15px;
    top: 15px;

    z-index: 2;

    background: #66733b;

    color: white;

    padding: 8px 11px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}

.orange-badge {
    background: #ff8a00;

    color: #11120f;
}

.shop-product-info {
    padding: 24px;
}

.shop-product-info h2 {
    font-size: 18px;

    margin-bottom: 10px;
}

.shop-product-description {
    color: #777971;

    line-height: 1.6;

    font-size: 13px;

    min-height: 42px;

    margin-bottom: 20px;
}

.shop-product-price {
    font-size: 20px;

    font-weight: 900;

    margin-bottom: 18px;
}

.shop-product-button {
    display: block;

    width: 100%;

    text-align: center;

    text-decoration: none;

    color: #11120f;

    border:
        2px solid
        #11120f;

    padding: 13px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: .2s ease;
}

.shop-product-button:hover {
    background: #11120f;

    color: white;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .navigation {
        display: none;
    }

    .header-icons {
        margin-left: auto;

        width: auto;
    }

    .hero {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        max-width: 720px;

        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-art {
        margin-top: 40px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .brand-section {
        grid-template-columns: 1fr;
    }

    .brand-art {
        min-height: 550px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .shop-product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .announcement-bar {
        font-size: 9px;
    }

    .header {
        height: 80px;

        padding: 0 18px;
    }

    .logo-link {
        width: auto;
    }

    .header-logo {
        width: 175px;
    }

    .hero {
        min-height: auto;

        padding:
            75px
            22px
            55px;
    }

    .hero h1 {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-art img {
        max-width: 450px;
    }

    .intro-strip {
        grid-template-columns: 1fr;
    }

    .intro-strip div {
        border-right: none;

        border-bottom:
            1px solid
            rgba(0,0,0,.15);
    }

    .categories,
    .products {
        padding:
            70px
            20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 340px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .brand-art {
        min-height: 430px;

        padding: 30px;
    }

    .brand-content {
        padding:
            70px
            30px;
    }

    .brand-content h2 {
        font-size: 47px;
    }

    .cta h2 {
        font-size: 40px;
    }

    .newsletter h2 {
        font-size: 38px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        padding: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero h1 {
        font-size: 52px;
    }

    .shop-controls {
        flex-direction: column;

        align-items: stretch;

        padding:
            25px
            20px;
    }

    .shop-filter-buttons {
        justify-content: center;
    }

    .shop-sort {
        justify-content: center;
    }

    .shop-products {
        padding:
            55px
            20px
            80px;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-image {
        height: 330px;
    }
}