@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- COLORS ---------- */
:root {
    --primary-mint: #A3E4D7;
    /* Fresh Mint */
    --primary-mint-dark: #48C9B0;
    /* Darker Mint for hover/accents */
    --primary-chocolate: #4E342E;
    /* Dark Chocolate */
    --primary-chocolate-light: #795548;
    /* Milk Chocolate */
    --accent-gold: #D4AF37;
    /* Elegant Gold */

    --bg-white: #FFFFFF;
    --bg-cream: #FCF9F7;
    /* Soft cream background */

    --text-dark: #3E2723;
    /* Very dark brown/chocolate for text */
    --text-light: #FFFFFF;

    --shadow-soft: 0 10px 30px rgba(62, 39, 35, 0.08);
    /* Chocolate tinted shadow */
    --shadow-hover: 0 20px 40px rgba(62, 39, 35, 0.2);
}

/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    background: linear-gradient(120deg, #e0f7fa 0%, #80cbc4 100%);
    /* Fresh Mint Gradient */
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- HEADER (Synced Glass V2) ---------- */
header {
    background-color: rgba(224, 242, 241, 0.3);
    /* Soft Mint Tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 120px;
    padding: 0 5vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* Minimal shadow */
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo img {
    width: 60px;
    /* Standardize size */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-fashion {
    margin: 0;
    font-size: 24px;
    color: var(--primary-chocolate);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-zone {
    margin: 0;
    font-size: 12px;
    color: var(--primary-chocolate-light);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.4;
    text-shadow: none;
}

.list {
    grid-area: nav;
    margin: 0;
    justify-self: center;
    /* Center align */
}

.list ul {
    list-style: none;
    display: flex;
    gap: 50px;
    /* Wider spacing */
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.list a {
    color: rgb(31, 31, 31);
    /* Neutral dark grey initial state */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-mint-dark);
    transition: width 0.3s ease;
}

.list a:hover {
    color: var(--primary-mint-dark);
}

.list a:hover::after {
    width: 80%;
}

.basket {
    grid-area: basket;
    justify-self: end;
    position: relative;
}

.basket::before {
    content: '';
}

.basket img {
    width: 26px;
    transition: transform 0.3s ease;
    filter: none;
    /* Reset filter */
    opacity: 0.7;
}

.basket a:hover img {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

/* ---------- MAIN ---------- */
main {
    flex-grow: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 0;
}

/* Beautiful Store Info V2 */
.store-info {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    width: 80%;
    max-width: 900px;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(78, 52, 46, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    animation: fadeIn 0.8s ease-in-out;
}

.store-info::before {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: "Playfair Display", serif;
    color: rgb(64, 64, 64);
    margin: 0;
    font-size: 2.5rem;
    /* Larger title */
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

h2 {
    font-family: "Playfair Display", serif;
    color: rgb(64, 64, 64);
    font-size: 1.8rem;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
}

h3 {
    font-size: 1.15rem;
    line-height: 2;
    /* Comfortable reading */
    color: var(--text-dark);
    font-weight: 400;
    margin: 1rem 0;
    text-align: left;
    /* Better readability */
    font-family: "Montserrat", sans-serif;
}

.separator {
    border: none;
    border-top: 1px solid var(--primary-mint-dark);
    /* Mint separator */
    /* margin: 2rem auto; */
    width: 90%;
    opacity: 0.5;
}

/* ---------- FOOTER ---------- */
footer {
    background-color: rgb(64, 64, 64);
    width: 100%;
    padding: 50px 5vw;
    /* Side padding for row layout */
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    justify-content: space-between;
    /* Space out items */
    align-items: center;
    /* Center vertically */
    color: var(--primary-mint);
    gap: 20px;
    margin-top: 2rem;
    /* border-top: 5px solid var(--accent-gold); */
    box-sizing: border-box;
    /* Ensure padding doesn't overflow width */
}

.listInFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.listInFooter a {
    color: var(--primary-mint);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 600;
}

.listInFooter a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #E0E0E0;
}

.contacts p {
    margin: 0;
}

.contacts p:first-child {
    font-weight: 700;
    color: var(--primary-chocolate);
    background: var(--primary-mint);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 0;
    font-size: 16px;
}

/* ---------- ADAPTIVE ---------- */
@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
        background-color: var(--bg-white);
    }

    .list {
        margin: 0;
        width: 100%;
        margin-right: 0;
    }

    .list ul {
        justify-content: center;
        gap: 20px;
        font-size: 14px;
    }

    .basket {
        display: none;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .store-info {
        width: 90%;
        padding: 2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .listInFooter ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}