:root {
    --navy: #000b3d;
    --gold: #C9A84C;
    --white: #f8f8ff;
    --purple: #6b2fa0;
    --text: #333;
    --muted: #666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
}

/* ── NAV ── */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 25px;
    background-color: var(--navy);
    position: sticky;
    top: 0;
    z-index: 500;
}

.logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links ul li a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, var(--purple), var(--navy));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(248, 248, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(248, 248, 255, 0.65);
    color: var(--white);
    padding: 11px 28px;
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 1000px;
    max-height: 65vh;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* ── ABOUT ── */
.about {
    background-color: var(--white);
    text-align: center;
    padding: 90px 80px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 50px auto;
    line-height: 1.9;
}

.about-values {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.value-card {
    background-color: var(--navy);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    max-width: 260px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-6px);
    background-color: var(--purple);
}

.value-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    color: rgba(248, 248, 255, 0.78);
    line-height: 1.6;
}

/* ── SHARED SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 14px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background-color: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--muted);
    font-size: 1.02rem;
    margin-top: 6px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(248, 248, 255, 0.72); }

/* ── CATEGORIES ── */
.categories {
    padding: 90px 80px;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}

.category-img-wrap {
    height: 200px;
    overflow: hidden;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-img-wrap img {
    transform: scale(1.06);
}

.category-img-placeholder { font-size: 4rem; }
.cat-return { background: linear-gradient(135deg, #C9A84C, #6b2fa0); }
.cat-art    { background: linear-gradient(135deg, #6b2fa0, #000b3d); }

.category-info {
    padding: 22px 20px;
    border-top: 3px solid var(--gold);
}

.category-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.category-info p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ── BULK ORDERS / SERVE ── */
.serve {
    padding: 90px 80px;
    background: var(--navy);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.serve-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 12px;
    padding: 38px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.serve-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.serve-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.serve-card p {
    color: rgba(248, 248, 255, 0.65);
    font-size: 0.87rem;
    line-height: 1.68;
    margin-bottom: 26px;
}

.btn-quote {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    font-size: 0.87rem;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 90px 80px;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 34px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.82;
    font-style: italic;
    margin-bottom: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--navy));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: #aaa;
}

/* ── CONTACT ── */
.contact {
    padding: 90px 80px;
    background: #f9f7ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-icon {
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #aaa;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-text a {
    display: block;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-text a:hover { color: var(--purple); }

.contact-text p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.77rem !important;
    color: #bbb !important;
    margin-top: 2px;
}

.contact-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    background: #fff;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--navy);
}

.map-header-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.map-store-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.map-area-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    background: var(--purple);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.4px;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.map-directions-btn:hover {
    background: #5c3ba8;
    transform: translateY(-1px);
    color: #fff !important;
}

.map-frame-wrapper {
    flex: 1;
    min-height: 360px;
    position: relative;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.map-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 22px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.map-footer-pin {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.map-footer p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.get-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 7px 16px;
    background: transparent;
    color: var(--purple) !important;
    border: 1.5px solid var(--purple);
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none !important;
    letter-spacing: 0.4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.get-directions-link:hover {
    background: var(--purple);
    color: #fff !important;
}

/* ── NEWSLETTER ── */
.newsletter {
    padding: 90px 80px;
    background: linear-gradient(135deg, var(--navy), var(--purple));
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content > p {
    color: rgba(248, 248, 255, 0.78);
    font-size: 1.02rem;
    margin: 0 auto 36px;
    max-width: 480px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto 16px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 0.97rem;
    font-family: 'Lato', sans-serif;
    outline: none;
    color: #333;
}

.newsletter-form button {
    padding: 15px 28px;
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #dbb95e;
}

.newsletter-success {
    display: none;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 16px;
}

.newsletter-success.visible { display: block; }

/* ── FOOTER ── */
footer {
    background-color: #000720;
    color: var(--white);
    padding: 64px 80px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.footer-brand img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.87rem;
    color: rgba(248, 248, 255, 0.58);
    line-height: 1.72;
    max-width: 270px;
    margin-bottom: 18px;
}

.footer-contact-brief {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-brief a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.87rem;
    transition: opacity 0.2s;
}

.footer-contact-brief a:hover { opacity: 0.75; }

.footer-links h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
    text-decoration: none;
    color: rgba(248, 248, 255, 0.58);
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover { color: var(--gold); }

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    color: rgba(248, 248, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.social-note {
    font-size: 0.76rem;
    color: rgba(248, 248, 255, 0.36);
    font-style: italic;
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(248, 248, 255, 0.32);
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    animation: waPulse 2.5s infinite;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.05); }

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75); }
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background-color: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 9999;
    font-family: 'Lato', sans-serif;
    max-width: 90vw;
    text-align: center;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE: TABLET (769–1100px) ── */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero           { padding: 60px 40px; }
    .about          { padding: 70px 40px; }
    .categories     { padding: 70px 40px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .serve          { padding: 70px 40px; }
    .serve-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials   { padding: 70px 40px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact        { padding: 70px 40px; }
    .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
    .newsletter     { padding: 70px 40px; }
    footer          { padding: 50px 40px 0; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand   { grid-column: span 2; }
}

/* ── RESPONSIVE: MOBILE (≤768px) ── */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        right: 0;
        width: 60%;
        background-color: var(--purple);
        padding: 20px 0;
        z-index: 400;
    }

    .nav-links.active { display: block; }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-links ul li a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero {
        flex-direction: column;
        padding: 48px 24px;
        text-align: center;
        min-height: auto;
    }

    .hero-content     { max-width: 100%; }
    .hero-content h1  { font-size: 1.9rem; }
    .hero-cta         { justify-content: center; }
    .hero-image       { justify-content: center; }

    .about            { padding: 60px 24px; }
    .about-values     { flex-direction: column; align-items: center; }
    .value-card       { max-width: 100%; width: 100%; }

    .section-header h2 { font-size: 1.9rem; }

    .categories       { padding: 60px 24px; }
    .categories-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .serve            { padding: 60px 24px; }
    .serve-grid       { grid-template-columns: 1fr; }

    .testimonials     { padding: 60px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact          { padding: 60px 24px; }
    .contact-grid     { grid-template-columns: 1fr; gap: 36px; }
    .map-header       { flex-wrap: wrap; gap: 12px; }
    .map-directions-btn { width: 100%; justify-content: center; }

    .newsletter       { padding: 60px 24px; }
    .newsletter-content h2 { font-size: 1.9rem; }
    .newsletter-form  { flex-direction: column; border-radius: 0; overflow: visible; box-shadow: none; }
    .newsletter-form input  { border-radius: 6px; margin-bottom: 10px; }
    .newsletter-form button { border-radius: 6px; }

    footer            { padding: 48px 24px 0; }
    .footer-content   { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand p   { max-width: 100%; }

    .whatsapp-float   { padding: 14px; border-radius: 50%; }
    .whatsapp-float span { display: none; }

    .toast            { white-space: normal; bottom: 80px; padding: 12px 20px; }
}
