@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f8ecee 0%, #e8d5ca 50%, #d5bdaf 100%);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #f5b8c4;
    top: -150px;
    left: -120px;
}

.blob-2 {
    width: 420px;
    height: 420px;
    background: #f4d4b8;
    bottom: -120px;
    right: -100px;
}

.blob-3 {
    width: 360px;
    height: 360px;
    background: #e8c5d0;
    top: 40%;
    right: 10%;
    opacity: 0.45;
}

.container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 40px;
}

.logo-container img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 240px;
    }
}

.content {
    background: rgba(255, 255, 255, 0.50);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.01em;
}

p {
    font-size: 1.1rem;
    color: #2a2a2a;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.secondary-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

.primary-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.secondary-btn {
    flex: 1;
    min-width: 0;
    padding: 11px 16px;
    font-size: 0.95rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.facebook-btn {
    background-color: #1877f2;
    color: white;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.icon {
    width: 24px;
    height: 24px;
}

.store-info {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    font-size: 0.95rem;
    color: #2a2a2a;
}

.store-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.store-info-row:last-child {
    margin-bottom: 0;
}

.store-info .info-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #8a6d5c;
}

.store-info a {
    color: inherit;
    text-decoration: none;
}

.store-info a:hover {
    text-decoration: underline;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.hours-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 0.9rem;
}

.hours-list .day {
    color: #4a4a4a;
}

.hours-list .time {
    color: #1a1a1a;
    font-weight: 500;
}

.hours-list .day.today,
.hours-list .time.today {
    font-weight: 700;
    color: #1a1a1a;
}

.hours-note {
    display: block;
    font-size: 0.8rem;
    color: #6a6a6a;
    font-weight: 400;
    margin-top: 2px;
}

.map-embed {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
}

.page-nav {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.95rem;
}

.page-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.page-nav a:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Focus styles for keyboard navigation */
.social-btn:focus-visible,
.page-nav a:focus-visible,
.quick-contact a:focus-visible,
.store-info a:focus-visible {
    outline: 2px solid #8a6d5c;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .social-btn,
    .quick-contact a,
    .page-nav a {
        transition: none;
    }

    .social-btn:hover,
    .quick-contact a:hover {
        transform: none;
    }
}


.quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .quick-contact {
        grid-template-columns: 1fr;
    }
}

.quick-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-contact a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.quick-contact .icon {
    width: 20px;
    height: 20px;
    color: #8a6d5c;
}

@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    .container {
        max-width: 100%;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.9rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
        min-height: auto;
        align-items: flex-start;
    }

    .container {
        margin: 20px 0;
    }

    .logo-container img {
        max-width: 224px;
    }

    .logo-container {
        margin-bottom: 25px;
    }

    h1 {
        font-size: 1.65rem;
        margin-bottom: 18px;
    }

    p {
        font-size: 1rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 16px 20px;
    }

    .icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }

    .content {
        padding: 20px 12px;
    }
}

/* ── Privacy Policy page ── */

.container--wide {
    max-width: 760px;
}

.prose {
    text-align: left;
}

.prose h1 {
    text-align: center;
}

.prose .last-updated {
    text-align: center;
    font-size: 0.85rem;
    color: #6a6a6a;
    margin-top: -12px;
    margin-bottom: 28px;
}

.prose h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 8px;
    padding-top: 4px;
}

.prose h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 16px;
    margin-bottom: 6px;
}

.prose p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-shadow: none;
}

.prose ul {
    margin: 0 0 12px 20px;
    padding: 0;
}

.prose li {
    font-size: 0.95rem;
    color: #2a2a2a;
    line-height: 1.65;
    margin-bottom: 4px;
}

.prose .table-scroll {
    overflow-x: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
}

.prose th {
    text-align: left;
    font-weight: 600;
    padding: 8px 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
    white-space: nowrap;
}

.prose td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    vertical-align: top;
    color: #2a2a2a;
    line-height: 1.5;
}

.prose td a {
    color: #8a6d5c;
    word-break: break-all;
}
