


/* ===================================
   LIZ FOODS POLICY PAGES
=================================== */


/* Container */
.policy-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


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

.policy-header {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.policy-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: #b91c1c;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
}

/* Navigation */

.policy-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.policy-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.policy-menu li a:hover,
.policy-menu li a.active {
    color: #b91c1c;
}


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

.policy-hero {
    background: linear-gradient(135deg, #7f1d1d, #b91c1c, #ef4444);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    left: -80px;
}

.policy-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -150px;
    right: -50px;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
}

.policy-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 650px;
    margin: auto;
}


/* ===================================
   POLICY CONTENT
=================================== */

.policy-section {
    padding: 80px 0;
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}


/* Sidebar */

.policy-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.policy-sidebar h4 {
    margin-bottom: 18px;
    font-size: 18px;
    color: #222;
}

.policy-sidebar ul {
    list-style: none;
}

.policy-sidebar li {
    margin-bottom: 10px;
}

.policy-sidebar a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.policy-sidebar a:hover,
.policy-sidebar a.active {
    background: #fff1f1;
    color: #b91c1c;
}


/* Main Content */

.policy-content {
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.policy-content h2 {
    color: #b91c1c;
    font-size: 27px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-content h3 {
    font-size: 19px;
    color: #222;
    margin-top: 30px;
    margin-bottom: 12px;
}

.policy-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}


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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.contact-card {
    padding: 25px;
    background: #fff7f7;
    border-radius: 12px;
    border: 1px solid #fee2e2;
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    background: #b91c1c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card h4 {
    margin-bottom: 8px;
    color: #222;
}

.contact-card p {
    margin: 0;
}


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

.policy-footer {
    background: #2b0b0b;
    padding: 30px 0;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.policy-footer span {
    color: #ef4444;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 991px) {

    .policy-hero {
        padding: 70px 0;
    }

    .policy-hero h1 {
        font-size: 38px;
    }

    .policy-wrapper {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        position: relative;
        top: 0;
    }

    .policy-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .policy-sidebar li {
        margin: 0;
    }

    .policy-content {
        padding: 35px;
    }

}


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

@media (max-width: 767px) {

    .policy-container {
        width: 92%;
    }

    .policy-header {
        position: relative;
    }

    .policy-nav {
        flex-direction: column;
        gap: 15px;
    }

    .policy-menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .policy-menu li a {
        font-size: 11px;
    }

    .policy-hero {
        padding: 55px 15px;
    }

    .policy-hero h1 {
        font-size: 30px;
    }

    .policy-hero p {
        font-size: 14px;
    }

    .policy-section {
        padding: 50px 0;
    }

    .policy-content {
        padding: 25px 20px;
    }

    .policy-content h2 {
        font-size: 23px;
    }

    .policy-content h3 {
        font-size: 17px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 14px;
    }

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

}