@import url('header.css');
@import url('home.css');
@import url('hero.css');
@import url('product.css');
@import url('page.css');
@import url('shop.css');
@import url('cart-checkout.css');

/* ========================================
   TOP BAR
======================================== */

.lp-topbar {
    background: #efb5b0;
    color: #4b3b36;

    text-align: center;

    font-size: 14px;
    letter-spacing: 0.3px;

    padding: 8px 16px;
}

/* ========================================
   HEADER
======================================== */

.lp-header {
    background: #fff;
    border-bottom: 1px solid #ead7c3;

    position: relative;
    z-index: 50;
}

.lp-header-inner {
    height: 96px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}

/* ========================================
   LOGO
======================================== */

.lp-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 40px;
}

.lp-logo img,
.lp-logo .custom-logo {
    max-height: 78px;
    width: auto;
}

.lp-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;

    color: #c9975b;
}

/* ========================================
   LEFT NAV
======================================== */

.lp-nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    padding-right: 60px;
}

/* ========================================
   RIGHT NAV
======================================== */

.lp-header-right {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    padding-left: 60px;
}

/* ========================================
   MENU
======================================== */

.lp-menu {
    display: flex;
    align-items: center;

    gap: 42px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.lp-menu a {
    position: relative;

    color: #4b3b36;

    font-size: 15px;
    font-weight: 400;

    text-decoration: none;

    padding-bottom: 8px;

    transition: color 0.25s ease;
}

/* UNDERLINE */

.lp-menu a::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #c9975b;

    transition: width 0.3s ease;
}

/* HOVER */

.lp-menu a:hover {
    color: #c9975b;
}

.lp-menu a:hover::after,
.lp-menu .current-menu-item > a::after,
.lp-menu .current_page_item > a::after {
    width: 100%;
}

/* ========================================
   HEADER SOCIALS
======================================== */

.lp-header-socials {
    display: flex;
    align-items: center;

    gap: 14px;
}

.lp-header-socials a {
    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #c9975b;

    transition: all 0.25s ease;
}

.lp-header-socials svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.lp-header-socials a:hover {
    color: #efb5b0;

    transform: translateY(-1px);
}

/* ========================================
   HEADER ICONS
======================================== */

.lp-header-icons {
    display: flex;
    align-items: center;

    gap: 18px;
}

.lp-header-icon-item {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: #c9975b;

    transition: all 0.25s ease;
}

.lp-header-icon-item svg {
    width: 100%;
    height: 100%;
}

.lp-header-icon-item:hover {
    color: #efb5b0;

    transform: translateY(-1px);
}

/* CART COUNT */

.lp-cart-count {
    position: absolute;

    top: -7px;
    right: -9px;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #efb5b0;
    color: #fff;

    font-size: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   MOBILE BUTTON
======================================== */

.lp-mobile-toggle {
    display: none !important;

    background: transparent;
    border: 0;

    color: #4b3b36;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

/* ========================================
   MOBILE MENU
======================================== */

.lp-mobile-menu {
    display: none !important;
}

/* ========================================
   MOBILE HEADER
======================================== */

@media (max-width: 900px) {

    .lp-header-inner {
        height: 82px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .lp-nav-left,
    .lp-nav-right {
        display: none;
    }

    .lp-logo {
        padding: 0;
    }

    .lp-logo img,
    .lp-logo .custom-logo {
        max-height: 52px;
    }

    .lp-header-right {
        padding-left: 0;

        gap: 14px;
    }

    .lp-header-icons {
        gap: 13px;
    }

    .lp-header-icon-item {
        width: 21px;
        height: 21px;
    }

}

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

.lp-footer {
    background: #f8f4f1;
    border-top: 1px solid #ead7c3;

    padding: 80px 0 60px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.4fr;

    gap: 70px;
}

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

.lp-footer-logo img {
    max-height: 78px;
    width: auto;

    margin-bottom: 18px;
}

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

.lp-footer-brand p,
.lp-footer li,
.lp-newsletter p {
    color: #4b3b36;

    font-size: 14px;
    line-height: 1.8;
}

.lp-footer h4 {
    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.3px;

    margin-bottom: 18px;
}

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

.lp-footer ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.lp-footer li {
    margin-bottom: 12px;
}

.lp-footer a {
    color: #4b3b36;

    text-decoration: none;

    transition: color 0.25s ease;
}

.lp-footer a:hover {
    color: #c9975b;
}

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

.lp-footer-socials {
    display: flex;

    gap: 14px;

    margin-top: 22px;
}

.lp-footer-socials a {
    width: 38px;
    height: 38px;

    border: 1px solid #ead7c3;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #c9975b;

    transition: all 0.25s ease;
}

.lp-footer-socials svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.lp-footer-socials a:hover {
    background: #efb5b0;
    border-color: #efb5b0;

    color: #fff;
}

/* ========================================
   NEWSLETTER
======================================== */

.lp-newsletter input[type="email"],
.lp-newsletter input[type="text"] {

    width: 100%;

    padding: 14px 16px;

    border: 1px solid #ead7c3;
    border-radius: 10px;

    background: #fff;
}

.lp-newsletter input[type="submit"],
.lp-newsletter button {

    margin-top: 14px;

    padding: 13px 24px;

    border: 0;
    border-radius: 10px;

    background: #efb5b0;
    color: #fff;

    font-weight: 600;

    transition: all 0.25s ease;
}

.lp-newsletter input[type="submit"]:hover,
.lp-newsletter button:hover {
    background: #c9975b;
}
/* ========================================
   FOOTER MOBILE
======================================== */

@media (max-width: 768px) {

    .lp-footer {
        padding: 60px 26px 42px;
    }

    .lp-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 42px 28px;
        text-align: center;
    }

    .lp-footer-column:first-child {
        grid-column: 1 / -1;
    }

    .lp-footer-logo img {
        max-height: 70px;
        margin: 0 auto 18px;
    }

    .lp-footer-brand p {
        max-width: 320px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.8;
    }

    .lp-footer-socials {
        justify-content: center;
        margin-top: 22px;
    }

    .lp-footer-column:nth-child(2),
    .lp-footer-column:nth-child(3) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-footer h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .lp-footer ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .lp-footer li {
        margin: 0;
    }

    .lp-footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 10px;
        text-align: left;
    }

    .lp-footer-column:last-child h4,
    .lp-newsletter {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-newsletter input[type="email"],
    .lp-newsletter input[type="text"] {
        width: 100%;
        height: 54px;
        border-radius: 14px;
    }

    .lp-newsletter input[type="submit"],
    .lp-newsletter button {
        width: auto;
        min-width: 120px;
        height: 52px;
        padding: 0 26px;
        border-radius: 14px;
    }

}