/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================
   COMMON
========================= */

.container {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.section-label {
    color: #dfb760;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 15px;
}

.section-heading p:last-child {
    color: #666666;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    z-index: 1000;
    height: 75px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    left: 0;
    right: 0;
    top: 0;
}

.navbar-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dfb760;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    transition: color 200ms ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #dfb760;
    transition: width 200ms ease;
}

.nav-menu a:hover {
    color: #dfb760;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: #000000;
}

.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;
    height: 535px;
    overflow: hidden;
    background: #111111;
    margin-top: 75px;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 700ms ease,
        transform 900ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 800px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 80px;
    text-align: center;
    color: #ffffff;
}

.hero-label {
    color: #dfb760;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 74px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #dfb760;
}

.hero-description {
    width: 650px;
    max-width: 100%;
    margin: 0 auto 35px;
    color: #eeeeee;
    font-size: 17px;
    line-height: 28px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 55px;
    padding: 0 25px;
    border: 1px solid #dfb760;
    font-size: 14px;
    font-weight: 700;
    transition: all 200ms ease;
}

.btn-primary {
    background: #dfb760;
    color: #000000;
}

.btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
}

.btn-outline:hover {
    background: #dfb760;
    color: #000000;
}

.btn-outline-dark {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.btn-outline-dark:hover {
    background: #dfb760;
    border-color: #dfb760;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    bottom: 35px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #ffffff;
    background: transparent;
    cursor: pointer;
}

.hero-dot.active {
    background: #dfb760;
    border-color: #dfb760;
}

/* =========================
   FRUIT STRIP
========================= */

.fruit-strip {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fruit-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 55px;
    width: max-content;
    will-change: transform;

    animation: fruitScroll 25s linear infinite;
}

.fruit-group {
    display: flex;
    align-items: center;

    gap: 55px;

    flex-shrink: 0;

    padding-right: 55px;
}

.fruit-name {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;

    color: #777777;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: color 200ms ease;
}

.fruit-name:hover {
    color: #000000;
}

.fruit-name::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;

    width: 0;
    height: 2px;

    margin: auto;

    background: #dfb760;

    transition: width 200ms ease;
}

.fruit-name:hover::after {
    width: 100%;
}

@keyframes fruitScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


.fruit-strip:hover .fruit-track {
    animation-play-state: paused;
}

/* =========================
   STATS
========================= */

.stats-section {
    padding: 25px 0;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    border-right: 1px solid #dddddd;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
}

.stat-item span {
    color: #666666;
    font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    padding: 55px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    height: 400px;
    overflow: hidden;
}

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

.about-content h2 {
    font-size: 38px;
    line-height: 54px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #dfb760;
}

.about-content p:not(.section-label) {
    color: #666666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    color: #000000;
    font-weight: 700;
    border-bottom: 2px solid #dfb760;
    padding-bottom: 5px;
}

.text-link span {
    color: #dfb760;
    font-size: 20px;
}


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

.products-section {
    padding: 55px 0;
    background: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
    border-radius: 12px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

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

.product-content {
    padding: 30px;
}

.product-category {
    color: #dfb760;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-content p:not(.product-category) {
    color: #666666;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
}

.product-link {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid #dfb760;
    padding-bottom: 4px;
}


/* =========================
   MARKETPLACE
========================= */

.marketplace-section {
    padding: 110px 0;
    background: #111111;
    color: #ffffff;
    text-align: center;
}

.marketplace-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marketplace-section h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 20px;
}

.marketplace-section p:not(.section-label) {
    color: #cccccc;
    margin-bottom: 30px;
}

.marketplace-buttons {
    display: flex;
    gap: 15px;
}


/* =========================
   REVIEWS
========================= */

.reviews-section {
    padding: 55px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 35px;
    border: 1px solid #eeeeee;
    background: #ffffff;
}

.stars {
    color: #dfb760;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.review-card p {
    color: #555555;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
}

.review-card strong {
    display: block;
    font-size: 15px;
}

.review-card span {
    color: #999999;
    font-size: 12px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 60px 0;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-section h2 {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 20px;
}

.contact-section p:not(.section-label) {
    color: #666666;
    max-width: 550px;
}

.contact-details {
    border-left: 2px solid #dfb760;
    padding-left: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item span {
    display: block;
    color: #888888;
    font-size: 12px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item strong {
    font-size: 17px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #000000;
    color: #ffffff;
}

.footer-grid {
    padding-top: 75px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    width: 300px;
    max-width: 100%;
    margin-top: 20px;
    color: #999999;
    font-size: 14px;
    line-height: 25px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    color: #dfb760;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-column a {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 200ms ease;
}

.footer-column a:hover {
    color: #dfb760;
}

.footer-shop-title {
    margin-top: 25px;
}

.footer-bottom {
    border-top: 1px solid #222222;
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #777777;
    font-size: 12px;
}

.footer-bottom a {
    color: #dfb760;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 52px;
        line-height: 62px;
    }

    .fruit-track {
        gap: 25px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .about-grid,
    .contact-grid {
        gap: 40px;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .container {
        max-width: calc(100% - 30px);
    }

    .navbar,
    .navbar-inner {
        height: 75px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #eeeeee;
        padding: 15px;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        padding: 13px 10px;
        border-bottom: 1px solid #eeeeee;
        font-size: 14px;
        font-weight: 600;
    }

    .hero {
        height: 650px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 230px;
    }

    .fruit-strip,
    .fruit-track {
        height: 75px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid #dddddd;
    }

    .about-section,
    .products-section,
    .reviews-section {
        padding: 36px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .about-content h2,
    .marketplace-section h2,
    .contact-section h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        text-align: center;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .product-image {
        height: 235px;
    }

    .product-content {
        padding: 14px;
    }
}


@media (max-width: 450px) {
    .hero {
        height: 595px;
    }

    .hero-content {
        padding-top: 75px;
    }

    .about-section, .products-section, .reviews-section {
        padding: 24px 0;
    }

    .section-heading h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .product-content h3 {
        font-size: 22px;
    }

    .product-content p:not(.product-category) {
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 46px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0 !important;
        border-bottom: 1px solid #dddddd;
        padding-bottom: 16px;
    }

    .stat-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}