/* General page styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #222;
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* ------------------------------
   HEADER
------------------------------ */

.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 9999;
}

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

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-family: "Inter", sans-serif; /* match Services page */
}



.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
    position: fixed; /* <-- cambia de absolute a fixed para overlay */
    top: 70px; /* justo debajo del header */
    left: 0;
    width: 100%;
    max-width: 420px; /* mismo ancho visual que Services */
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;

    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child {
    border-bottom: none;
}


@media (max-width: 768px) {
    .logo {
        height: 50px;
    }
}


/* Main container */
/* SHOP PAGE STYLING */
.shop-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.shop-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}

.shop-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.note {
    font-size: 0.9rem;
    color: #666;
}

/* BUTTON */
.shop-button {
    display: inline-block;
    padding: 14px 32px;
    background:  #1f9dcb;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;    
}

.shop-button:hover {
    background: #1f9dcb;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(31,157,203,0.35);
}
.shop-container {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   FOOTER
------------------------------ */

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-top: 8px;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}
 @media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-grid > div {
        margin-bottom: 20px;
    }

    .footer a {
        text-align: center;
    }
}

