body {
    margin: 0;
}

h2, h3 {
    font-family: "Playfair Display", serif;
    color: #565656;
}

.outer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-wrap {
    position: relative;
    background: url('../../assets/desktop.jpg');
    text-align: center;
    padding: 50px 20px;
    background-position: center center;
    background-size: 51% auto;
}

img.store-logo {
    width: 205px;
}

.hero-wrap h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 0 !important;
    color: #000;
}

a.cta-button {
    background: #7EBC87;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

h3 {
    font-size: 36px;
    margin-top: 20px;
}

.hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #FFFFFF;
    opacity: 0.83;
}

.hero-wrap .outer-container {
    position: relative;
    z-index: 2;
}

/* Schedule Section */
.schedule-wrap {
    text-align: center;
    padding: 50px 20px 70px;
    background: #F4F4F4;
}

/* Info Section */
.info-wrap {
    padding: 70px 20px;
}

.two-col-row {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}

.col-block {
    width: 50%;
    text-align: center;
}

.info-wrap img {
    width: 100%;
}

.info-wrap p {
    font-family: "Poppins", sans-serif;
    color: #7A7A7A;
    margin-bottom: 35px;
}

/* Hours Card */
.schedule-box {
    background: #7ebc87;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    margin: 0 auto;
}

.schedule-box h3 {
    color: #fff;
}

.time-grid h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.time-grid span {
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.time-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #eaeaea;
}

.time-entry:last-child {
    border-bottom: none;
}

.entry-day, .entry-time {
    color: #555;
    font-size: 16px;
}

.entry-time {
    text-align: right;
    white-space: nowrap;
}

/* Footer */
.main-footer {
    padding: 20px;
    text-align: center;
    background: #7EBC87;
    color: #fff;
}

.main-footer p {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Responsive */
@media screen and (max-width: 767px) {

    .hero-wrap, .schedule-wrap {
        padding: 20px;
    }

    .hero-wrap h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    .schedule-box {
        width: auto;
        padding: 20px;
    }

    .time-grid h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .time-grid span {
        font-size: 15px;
    }

    .two-col-row {
        flex-direction: column;
    }

    .col-block {
        width: 100%;
    }

    .info-wrap {
        padding: 20px 20px 40px;
    }
}