html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


/* Prevent sections from hiding underneath
   the fixed navbar */

section {
    scroll-margin-top: 80px;
}


/* General Sections */

.section {
    min-height: 100vh;

    padding: 120px 7%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.section p {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.7;
}

/* ========================================
   NAVBAR
======================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    z-index: 1000;

    background: transparent;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* Navbar after scrolling */

.navbar.scrolled {

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);
}


/* ========================================
   NAV CONTAINER
======================================== */

.nav-container {

    width: 100%;

    max-width: 1400px;

    height: 100%;

    margin: auto;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ========================================
   LOGO
======================================== */

.logo {

    display: flex;

    flex-direction: column;

    text-decoration: none;

    line-height: 1;

    color: white;

    transition: color 0.35s ease;
}


.navbar.scrolled .logo {

    color: #1e3324;
}


.logo-main {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 3px;
}


.logo-sub {

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    margin-top: 6px;
}


/* ========================================
   NAVIGATION
======================================== */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 38px;

    height: 100%;
}


.nav-link {

    position: relative;

    display: flex;

    align-items: center;

    gap: 6px;

    height: 100%;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 0.3px;

    transition: color 0.3s ease;
}


/* Scrolled text */

.navbar.scrolled .nav-link {

    color: #26372b;
}


/* ========================================
   HOVER UNDERLINE
======================================== */

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 0;

    height: 2px;

    background: currentColor;

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/* ========================================
   PRODUCTS
======================================== */

.products-link {

    cursor: pointer;
}


.arrow {

    font-size: 17px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.nav-dropdown:hover .arrow {

    transform: rotate(180deg);
}


/* ========================================
   DROPDOWN
======================================== */

.nav-dropdown {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;
}


.dropdown-menu {

    position: absolute;

    top: 72px;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    width: 220px;

    padding: 10px;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* Show dropdown */

.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}


/* Dropdown links */

.dropdown-menu a {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 15px;

    color: #26372b;

    text-decoration: none;

    font-size: 14px;

    border-radius: 8px;

    transition:
        background 0.25s ease,
        padding-left 0.25s ease;
}


.dropdown-menu a:hover {

    background: #f1f4ef;

    padding-left: 20px;
}


.dropdown-menu span {

    font-size: 11px;

    font-weight: 700;

    color: #71806e;
}


/* ========================================
   MOBILE MENU BUTTON
======================================== */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}


.menu-toggle span {

    width: 25px;

    height: 2px;

    background: white;

    transition: 0.3s ease;
}


.navbar.scrolled .menu-toggle span {

    background: #26372b;
}

/* ========================================
   HOME SECTION
======================================== */

.home-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 130px 7% 80px;

    background-image:
        url("bg.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* Dark overlay */

.home-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.22);

    z-index: 1;
}


/* Content wrapper */

.home-content {

    position: relative;

    z-index: 2;

    width: 100%;

    display: flex;

    justify-content: flex-start;
}


/* ========================================
   GLASS CARD
======================================== */

.glass-card {

    width: 650px;

    max-width: 90%;

    padding: 45px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.22);

    color: white;
}


/* Company name */

.company-name {

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.company-name span {

    display: block;

    font-size: 14px;

    letter-spacing: 3px;

    margin-top: 5px;

    font-weight: 500;
}


/* Main heading */

.glass-card h1 {

    font-size: 38px;

    line-height: 1.25;

    font-weight: 700;

    margin-bottom: 25px;
}


/* Divider */

.divider {

    width: 70px;

    height: 3px;

    background: white;

    margin-bottom: 25px;
}


/* Welcome heading */

.glass-card h2 {

    font-size: 25px;

    line-height: 1.3;

    margin-bottom: 18px;
}


/* Paragraph */

.glass-card p {

    font-size: 16px;

    line-height: 1.75;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   COMMITMENT SECTION
======================================== */

.commitment-section {

    background: url("bg2.jpeg");

    
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;

    padding: 110px 7%;
}


.commitment-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


/* Heading */

.small-title {

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #4d6b45;
}


.commitment-heading h2 {

    font-size: 45px;

    line-height: 1.15;

    margin-top: 18px;

    color: #1d2b20;
}


/* Content */

.commitment-content {

    font-size: 17px;

    line-height: 1.8;

    color: #465148;
}


.commitment-content > p {

    margin-bottom: 20px;
}


/* List */

.commitment-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 35px 0;
}


.commitment-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: white;

    border-radius: 10px;

    border: 1px solid #e5e8e3;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


.commitment-item:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.commitment-item span {

    font-size: 14px;

    font-weight: 700;

    color: #607b57;
}


.commitment-item p {

    font-size: 15px;

    line-height: 1.4;

    margin: 0;
}


/* Final paragraph */

.final-commitment {

    font-weight: 500;

    color: #263529;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .home-section {

        padding: 110px 20px 60px;

        background-position: center;
    }


    .glass-card {

        width: 100%;

        max-width: 100%;

        padding: 30px 25px;

        border-radius: 18px;
    }


    .glass-card h1 {

        font-size: 29px;
    }


    .glass-card h2 {

        font-size: 21px;
    }


    .glass-card p {

        font-size: 15px;

        line-height: 1.65;
    }


    .commitment-section {

        padding: 75px 20px;
    }


    .commitment-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .commitment-heading h2 {

        font-size: 34px;
    }


    .commitment-list {

        grid-template-columns: 1fr;
    }

}

/* ========================================
   COMMITMENT REVEAL ANIMATION
======================================== */

.reveal-item {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


/* When visible */

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}
/* ========================================
   ABOUT US SECTION
======================================== */

.about-section {

    position: relative;

    min-height: 100vh;

    padding: 120px 7% 100px;

    background-image:
        url("bg2.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* ========================================
   BACKGROUND OVERLAY
======================================== */

.about-overlay {

    position: absolute;

    inset: 0;

    background: rgba(248, 248, 241, 0.20);

    z-index: 1;
}


/* ========================================
   MAIN CONTAINER
======================================== */

.about-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    column-gap: 80px;

    row-gap: 70px;

    align-items: start;
}


/* ========================================
   LEFT INTRODUCTION
======================================== */

.about-intro {

    padding-top: 20px;
}


/* Section label */

.section-label {

    display: inline-block;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #486447;

    margin-bottom: 18px;
}


/* Main heading */

.about-intro h2 {

    font-size: 46px;

    line-height: 1.15;

    font-weight: 700;

    color: #1d3224;

    margin-bottom: 25px;
}


/* Small divider */

.about-line {

    width: 65px;

    height: 3px;

    background: #5f7958;

    margin-bottom: 28px;
}


/* Introduction paragraphs */

.about-intro p {

    max-width: 500px;

    font-size: 16px;

    line-height: 1.8;

    color: #435046;

    margin-bottom: 20px;
}


/* ========================================
   RIGHT CONTENT
======================================== */

.about-support {

    padding: 25px 0;
}


/* Small label */

.support-label {

    display: block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #60775b;

    margin-bottom: 10px;
}


/* Supporting heading */

.about-support > h3 {

    font-size: 30px;

    line-height: 1.3;

    color: #1d3224;

    margin-bottom: 30px;
}


/* ========================================
   ABOUT ITEMS
======================================== */

.about-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 19px 22px;

    margin-bottom: 12px;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.75);

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(45, 68, 48, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Hover */

.about-item:hover {

    transform: translateX(5px);

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 10px 28px rgba(45, 68, 48, 0.12);
}


/* Number */

.item-number {

    flex-shrink: 0;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e5ede1;

    color: #496344;

    font-size: 12px;

    font-weight: 700;
}


/* Item content */

.item-content {

    flex: 1;
}


/* Item heading */

.item-content h4 {

    font-size: 16px;

    line-height: 1.4;

    color: #26392b;

    margin-bottom: 5px;
}


/* Item description */

.item-content p {

    font-size: 13px;

    line-height: 1.5;

    color: #657067;

    margin: 0;
}


/* ========================================
   BOTTOM MESSAGE
======================================== */

.about-bottom {

    grid-column: 1 / -1;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

    padding: 30px 40px;

    background: rgba(255, 255, 255, 0.62);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    border-top: 1px solid rgba(255, 255, 255, 0.8);

    border-bottom: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 15px;
}


.about-bottom p {

    font-size: 17px;

    line-height: 1.7;

    font-weight: 500;

    color: #304234;

    margin: 0;
}


/* ========================================
   POINT REVEAL ANIMATION
======================================== */

.reveal-item {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal-item.show {

    opacity: 1;

    transform: translateY(0);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 950px) {

    .about-section {

        padding: 100px 5% 80px;
    }


    .about-container {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-intro {

        padding-top: 0;
    }


    .about-intro h2 {

        font-size: 40px;
    }


    .about-intro p {

        max-width: 100%;
    }


    .about-bottom {

        grid-column: auto;
    }

}


@media (max-width: 600px) {

    .about-section {

        padding: 90px 20px 60px;

        background-position: center;
    }


    .about-intro h2 {

        font-size: 32px;
    }


    .about-support > h3 {

        font-size: 25px;
    }


    .about-item {

        gap: 14px;

        padding: 16px;
    }


    .item-number {

        width: 34px;

        height: 34px;

        font-size: 11px;
    }


    .item-content h4 {

        font-size: 15px;
    }


    .item-content p {

        font-size: 12px;
    }


    .about-bottom {

        padding: 25px 20px;
    }


    .about-bottom p {

        font-size: 15px;
    }

}

/* ========================================
   OUR VISION SECTION
======================================== */

.vision-section {

    position: relative;

    padding: 120px 7% 100px;

    background: #f8faf6;

    overflow: hidden;
}


/* ========================================
   BACKGROUND
======================================== */

.vision-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(112, 145, 101, 0.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(112, 145, 101, 0.08),
            transparent 30%
        );

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.vision-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;
}


/* ========================================
   VISION INTRO
======================================== */

.vision-intro {

    max-width: 900px;

    margin: 0 auto 110px;

    text-align: center;
}


.vision-label {

    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #55734f;
}


.vision-intro h2 {

    font-size: 52px;

    line-height: 1.15;

    font-weight: 700;

    color: #1d3023;

    margin-bottom: 30px;
}


.vision-intro h2 span {

    color: #66845e;
}


.vision-statement {

    max-width: 780px;

    margin: auto;

    font-size: 18px;

    line-height: 1.8;

    color: #536057;
}


/* ========================================
   SECTION HEADINGS
======================================== */

.section-heading {

    margin-bottom: 40px;
}


.section-heading > span {

    display: block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #688062;
}


.section-heading h3 {

    font-size: 34px;

    line-height: 1.25;

    color: #203326;
}


/* ========================================
   MISSION
======================================== */

.mission-section {

    margin-bottom: 120px;
}


.mission-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.mission-card {

    position: relative;

    min-height: 150px;

    padding: 28px;

    background: white;

    border: 1px solid #e5ebe2;

    border-radius: 14px;

    box-shadow:
        0 6px 20px rgba(42, 66, 44, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.mission-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 30px rgba(42, 66, 44, 0.10);
}


.mission-card > span {

    display: block;

    margin-bottom: 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #789070;
}


.mission-card p {

    font-size: 15px;

    line-height: 1.65;

    color: #4e5a51;

    margin: 0;
}


/* ========================================
   WHY CAMIN
======================================== */

.why-section {

    margin-bottom: 120px;
}


.section-heading.centered {

    text-align: center;

    margin-bottom: 50px;
}


.section-heading.centered h3 {

    font-size: 40px;
}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.value-card {

    padding: 32px 28px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid #e3e9e0;

    border-radius: 16px;

    text-align: center;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.value-card:hover {

    transform: translateY(-7px);

    background: white;

    box-shadow:
        0 15px 35px rgba(42, 66, 44, 0.09);
}


.value-icon {

    font-size: 32px;

    margin-bottom: 18px;
}


.value-card h4 {

    font-size: 18px;

    color: #253a29;

    margin-bottom: 12px;
}


.value-card p {

    font-size: 14px;

    line-height: 1.7;

    color: #606b62;

    margin: 0;
}


/* ========================================
   BUILDING A BETTER FUTURE
======================================== */

.future-section {

    max-width: 900px;

    margin: auto;

    padding: 70px 60px;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            #edf3e9,
            #f7faf5
        );

    border-radius: 22px;

    border: 1px solid #dfe8db;

    box-shadow:
        0 12px 35px rgba(44, 68, 46, 0.06);
}


.future-section > span {

    display: block;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #5f7a58;
}


.future-section h3 {

    font-size: 38px;

    line-height: 1.2;

    color: #1f3425;

    margin-bottom: 28px;
}


.future-section p {

    max-width: 750px;

    margin: 0 auto 15px;

    font-size: 16px;

    line-height: 1.8;

    color: #536057;
}


.future-section p:last-child {

    margin-bottom: 0;

    font-weight: 500;

    color: #334737;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 950px) {

    .vision-section {

        padding: 90px 5% 80px;
    }


    .vision-intro h2 {

        font-size: 42px;
    }


    .mission-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .vision-section {

        padding: 80px 20px 60px;
    }


    .vision-intro {

        margin-bottom: 75px;
    }


    .vision-intro h2 {

        font-size: 32px;
    }


    .vision-statement {

        font-size: 15px;

        line-height: 1.7;
    }


    .section-heading h3 {

        font-size: 27px;
    }


    .section-heading.centered h3 {

        font-size: 30px;
    }


    .mission-grid {

        grid-template-columns: 1fr;
    }


    .values-grid {

        grid-template-columns: 1fr;
    }


    .mission-section,
    .why-section {

        margin-bottom: 80px;
    }


    .future-section {

        padding: 45px 25px;

        border-radius: 16px;
    }


    .future-section h3 {

        font-size: 29px;
    }


    .future-section p {

        font-size: 14px;
    }

}

/* ========================================
   PRODUCTS SECTION
======================================== */

.products-section {

    position: relative;

    padding: 120px 7% 110px;

    background: #f7f9f5;

    overflow: hidden;
}


/* ========================================
   CONTAINER
======================================== */

.products-container {

    position: relative;

    max-width: 1250px;

    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.products-header {

    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


.products-label {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #5d7856;
}


.products-header h2 {

    font-size: 48px;

    line-height: 1.15;

    color: #1d3023;

    margin-bottom: 22px;
}


.products-header h2 span {

    color: #67835f;
}


.products-header p {

    max-width: 650px;

    margin: auto;

    font-size: 17px;

    line-height: 1.7;

    color: #59645b;
}


/* ========================================
   PRODUCTS GRID
======================================== */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    align-items: stretch;
}


/* ========================================
   PRODUCT CARD
======================================== */

.product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: white;

    border-radius: 22px;

    border: 1px solid #e1e8df;

    box-shadow:
        0 10px 35px rgba(39, 62, 42, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.product-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(39, 62, 42, 0.12);
}


/* ========================================
   PRODUCT IMAGE
======================================== */

.product-image {

    height: 250px;

    width: 100%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* Livestock image */

.livestock-image {

    background-image:
        linear-gradient(
            rgba(20, 45, 27, 0.10),
            rgba(20, 45, 27, 0.10)
        ),
        url("aqua\ culture\ bg.jpg");
}


/* Aquaculture image */

.aquaculture-image {

    background-image:
        linear-gradient(
            rgba(20, 45, 27, 0.08),
            rgba(20, 45, 27, 0.08)
        ),
        url("livestock bg.jpg");
}


/* ========================================
   PRODUCT CONTENT
======================================== */

.product-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 35px;
}


/* Number */

.product-number {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #789170;

    margin-bottom: 8px;
}


/* Product title */

.product-content h3 {

    font-size: 34px;

    text-transform: capitalize;

    color: #203326;

    margin-bottom: 20px;
}


/* Paragraphs */

.product-content p {

    font-size: 15px;

    line-height: 1.75;

    color: #59645b;

    margin-bottom: 17px;
}


.product-intro {

    font-weight: 500;

    color: #3f4d43 !important;
}


/* Subheading */

.product-content h4 {

    margin: 12px 0 14px;

    font-size: 14px;

    line-height: 1.5;

    color: #304434;
}


/* ========================================
   PRODUCT LIST
======================================== */

.product-list {

    list-style: none;

    margin: 0 0 18px;

    padding: 0;
}


.product-list li {

    position: relative;

    padding-left: 25px;

    margin-bottom: 10px;

    font-size: 14px;

    line-height: 1.5;

    color: #566258;
}


.product-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    font-weight: 700;

    color: #63815d;
}


/* Ending */

.product-ending {

    margin-top: auto;

    padding-top: 10px;

    font-size: 14px !important;

    color: #4a584e !important;
}


/* ========================================
   EXPLORE BUTTON
======================================== */

.explore-button {

    align-self: flex-start;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 13px 22px;

    border-radius: 8px;

    background: #304b35;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.explore-button span {

    font-size: 18px;

    transition: transform 0.3s ease;
}


.explore-button:hover {

    background: #203a27;

    transform: translateY(-2px);
}


.explore-button:hover span {

    transform: translateX(5px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 950px) {

    .products-section {

        padding: 90px 5%;
    }


    .products-header h2 {

        font-size: 40px;
    }


    .products-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 600px) {

    .products-section {

        padding: 80px 20px;
    }


    .products-header {

        margin-bottom: 45px;
    }


    .products-header h2 {

        font-size: 32px;
    }


    .products-header p {

        font-size: 15px;
    }


    .product-image {

        height: 210px;
    }


    .product-content {

        padding: 27px 22px;
    }


    .product-content h3 {

        font-size: 29px;
    }


    .product-content p {

        font-size: 14px;
    }

}