* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

body {}


/* ===========================
   HERO SECTION
=========================== */
/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/abbe/Main/img/hero-img.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    /* stack text vertically */
    align-items: center;
    justify-content: center;
}

/* Hero Text */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 0.8rem;
}

.hero-location {
    font-size: 1rem;
    font-weight: 500;
}

/* ✨ Fade-in + slide-up animation for hero text */
.hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1.2s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.5s;
}

.hero-content .hero-location {
    animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================= */
/* CART BUTTON - TOP RIGHT CLEAN */
/* ============================= */

.cart-button {
    position: absolute;
    top: 20px;
    right: 30px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 50px;
    border: none;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cart-button i {
    font-size: 14px;
}

/* Hover effect */
.cart-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Cart Count Badge */
.cart-count {
    background: pink;
    color: white;
    font-size: 12px;
    font-weight: 600;

    padding: 3px 8px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

/* ===========================
   HEADER + NAVIGATION
=========================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    /* sits above overlay and hero image */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
}

.logo {
    position: absolute;
    top: -2rem;
    left: -2.5rem;
    width: 300px;
    height: auto;
    z-index: 4;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

.nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    text-transform: uppercase;
}

.nav a {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.4s ease;
}

.nav a:hover::after {
    width: 100%;
}


header h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    /* Elegant and timeless */
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1.2s ease forwards 0.6s;
}

/* Subtle underline line that fades in after the text */
header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.6s ease 1.2s;
}

header h1.appear::after {
    width: 60%;
}

/* Animation for the text entrance */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===========================
   RESPONSIVE HERO
=========================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .logo {
        width: 120px;
        left: 1rem;
    }
}

.info-text {
    font-size: 1.5rem;
    padding: 2rem 0;
    -moz-columns: 3;
    -webkit-columns: 3;
    columns: 3;
    font-family: "Playfair Display", serif;
}

.info-text p {
    margin-bottom: 2rem;
}

@media screen and (max-width: 800px) {
    header ul li:not(:nth-child(4)) {
        display: none;
    }

    header ul li:nth-child(4) {
        width: 100%;
    }
}



/* ===========================
   PRODUCTS GRID
=========================== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 8rem 4rem 4rem;
    position: relative;
    z-index: 2;
}

.product {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-content {
    padding: 1.2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn {
    background: #1b1b1b;
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: pink;
    color: white;
}

/* ===========================
   CART BUTTON
=========================== */
.cart {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background-color: black;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cart:hover {
    background-color: pink;
    transform: scale(1.05);
}

/* ===========================
   CART MODAL
=========================== */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    /* ✅ allows scrolling when needed */
    padding: 2rem 1rem;
}

.cart-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1001;
    max-height: 90vh;
    /* ✅ limit height so content doesn’t overflow screen */
    overflow-y: auto;
    /* ✅ makes cart content scrollable independently */
}


.cart-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* ===========================
   CART ITEM LAYOUT (clean + lined)
=========================== */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: left;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details strong {
    display: block;
    font-size: 1rem;
    color: #222;
}

.cart-item-details span {
    display: block;
    font-size: 0.9rem;
    color: #555;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item-actions button {
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-item-actions button:hover {
    opacity: 0.8;
}


.cart-total {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #e63946;
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
}

.close-btn {
    display: block;
    margin: 1rem auto 0;
    background: #1b1b1b;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-btn:hover {
    background: pink;
    color: #1b1b1b;
}

/* -------------------------------------------------
   FOOTER — Luxury Side-by-Side Layout
------------------------------------------------- */
footer.footer {
    background-color: #fff;
    border-top: 2px solid #000;
    padding: 80px 0 50px 0;
    width: 100%;
    position: relative;
    font-family: "Work Sans", sans-serif;
    color: #111;
}

/* Container: limits width and centers everything */
footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Row layout: side-by-side alignment */
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* Keep columns in one row until smaller screens */
    gap: 3rem;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Elegant underline under each title */
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #000;
    height: 2px;
    width: 40px;
}

/* Footer list links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000;
    padding-left: 5px;
}

/* Social links */
.footer-col .social-links {
    margin-top: 15px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 38px;
    width: 38px;
    border: 1px solid #111;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #111;
    margin: 0 8px 8px 0;
    transition: all 0.4s ease;
}

.footer-col .social-links a:hover {
    background-color: #111;
    color: #fff;
}

/* Contact section */
.footer-col h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
}

.footer-col p {
    font-size: 0.95rem;
    color: #333;
    letter-spacing: 0.2px;
}

/* Footer bottom line */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #e3e3e3;
    padding-top: 20px;
}

/* -------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------- */
@media (max-width: 991px) {
    .row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 45%;
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .footer-col {
        flex: 1 1 100%;
    }

    footer .container {
        padding: 0 20px;
    }
}