:root {
    --primary: #0f1411;
    --accent: #c5a880;
    --light: #f8f4eb;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.88);
    --text: #2d2a26;
    --text-muted: #6f6b67;
    --white: #ffffff;
    --whatsapp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(197, 168, 128, 0.12), transparent 28%), linear-gradient(180deg, #fffdf7 0%, #f5eee1 100%);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.84rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    cursor: pointer;
    text-align: center;
    border-radius: 999px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 20, 17, 0.16);
}

.btn-hero {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-hero:hover {
    background: #f6f1e9;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    width: 100%;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-wa {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
}

.btn-wa:hover {
    background: #1eb855;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.small-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
}

.order-btn {
    width: 100%;
}

.live-chat-btn {
    width: 100%;
    max-width: 520px;
}

header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 25px rgba(15, 20, 17, 0.06);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 12px 0;
    flex-wrap: nowrap;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) {
    top: 12px;
}

.nav-toggle span:nth-child(2) {
    top: 20px;
}

.nav-toggle span:nth-child(3) {
    top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, 8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -6px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.1rem;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    padding: 10px 0;
}

/* Updated Logo Styling for Crisp Full-Color Presentation */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.logo:hover {
    transform: translateY(-2px);
    background: transparent;
    box-shadow: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-phone {
    color: var(--text);
    font-size: 0.87rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.25)), url('assets/hero.png') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.offer-banner {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
    display: inline-block;
}

.offer-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
    text-align: center;
}

.offer-banner h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.offer-banner p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.hero-card h4 {
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.hero-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
}

.trust-strip {
    padding: 28px 0;
    background: var(--light);
    border-top: 1px solid #eadfd6;
    border-bottom: 1px solid #eadfd6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(15,20,17,0.05);
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-item h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.collection-section {
    padding: 80px 0 90px;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-title h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fffdfa;
    border: 1px solid #efe8de;
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

.product-img-box {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 16px;
    background: #faf4ea;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.product-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.14rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    min-height: 44px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.coming-soon-card {
    background: linear-gradient(135deg, #f8f4eb 0%, #fffdf9 100%);
    border: 2px dashed var(--accent);
    position: relative;
}

.coming-soon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(197, 168, 128, 0.12);
}

.coming-soon-box {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.12), rgba(197, 168, 128, 0.08));
    font-size: 3rem;
    color: var(--accent);
}

.coming-soon-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.about-preview {
    padding: 0 0 90px;
}

.about-preview-panel {
    background: linear-gradient(120deg, #141b16, #2b3a2e);
    border-radius: 28px;
    padding: 32px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(15,20,17,0.1);
}

.about-preview-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    margin: 10px 0;
}

.about-preview-panel p {
    color: rgba(255,255,255,0.84);
    max-width: 600px;
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
    padding: 12px;
    display: flex;
    justify-content: center;
    z-index: 999;
}

footer {
    /* Muted deep-gold footer: richer, darker gold/brown gradient */
    background: linear-gradient(180deg, #b88b4a 0%, #6d4a1f 100%);
    color: var(--primary); /* dark content color */
    padding: 60px 0 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 24px;
}

.footer-brand h4,
.footer-title {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-brand p,
.footer-links a,
.footer-bottom p {
    color: var(--primary); /* dark text for footer content */
    font-size: 0.92rem;
}

.footer-links a {
    color: var(--primary);
    font-weight: 600;
    transition: color 200ms ease;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease, transform 150ms ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    color: var(--white);
    text-align: center;
    padding-bottom: 200px;
    padding-top: 200px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.25)), url('assets/hero.png') center/cover no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
    .page-hero::before {
        animation: hero-pan 20s linear infinite;
        transform-origin: center;
    }
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 70px 0 90px;
}

.info-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.info-card,
.contact-card {
    background: var(--white);
    border: 1px solid #eee7de;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15,20,17,0.05);
}

.info-card h3,
.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.info-card p,
.contact-card p,
.contact-card li {
    color: var(--text-muted);
}

.contact-list {
    list-style: none;
    margin-top: 14px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 18px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.content-section {
    padding: 70px 0 0;
}

.content-section.alt {
    padding-top: 24px;
}

.section-card,
.review-card {
    background: var(--white);
    border: 1px solid #eee7de;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 20, 17, 0.05);
}

.section-card h3,
.review-card strong {
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    align-items: flex-start;
}

.feature-list i {
    color: var(--accent);
    margin-top: 4px;
}

.mini-card {
    background: #faf4ea;
    border-radius: 16px;
    padding: 14px 16px;
    margin-top: 10px;
}

.mini-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}

.mini-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rating {
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.faq-list details {
    border: 1px solid #eee7de;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fffdf9;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
}

.faq-list p {
    margin-top: 8px;
    color: var(--text-muted);
}

.map-frame {
    width: 100%;
    border: none;
    border-radius: 16px;
    min-height: 220px;
    margin-top: 12px;
}

@media (max-width: 920px) {
    .nav-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.7rem;
        padding: 10px 0 4px;
        border-top: 1px solid rgba(197, 168, 128, 0.18);
        margin-top: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-actions {
        width: 100%;
        justify-content: space-between;
        order: 3;
        padding-top: 6px;
        gap: 0.55rem;
    }

    .nav-actions,
    .nav-links {
        align-items: center;
    }

    .nav-phone {
        width: auto;
        font-size: 0.8rem;
        gap: 5px;
    }

    .small-btn {
        padding: 9px 14px;
        font-size: 0.78rem;
    }

    .hero-highlights,
    .trust-grid,
    .footer-grid,
    .info-grid,
    .contact-grid,
    .section-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav-wrapper {
        padding: 8px 0;
        gap: 0.5rem;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
        order: 3;
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
    }

    .small-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .logo {
        padding: 0;
        height: 44px;
        min-width: 44px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-hero,
    .btn-outline {
        width: 100%;
    }

    .live-chat-btn {
        max-width: none;
    }

    .about-preview-panel {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

footer a:hover {
    color: var(--white);
}

.legal-page {
    background: var(--light);
    padding: 50px 0 80px;
}

.legal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 20, 17, 0.06);
}

.legal-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-content h1,
.legal-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 24px;
}

.legal-content p,
.legal-content li {
    color: var(--text);
    margin-bottom: 12px;
}

.legal-date {
    color: var(--text-muted) !important;
    margin-bottom: 24px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 24px;
    }
}



/* Responsive Product Grid Layout Fix */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Individual Product Card Styling */
.product-card {
    background: #fff;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.product-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin: 10px 0 5px;
    color: var(--primary, #111);
}

.product-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}



/* Custom sizing and styling for WhatsApp buttons */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 14px; /* Reduced padding to make it smaller */
    font-size: 0.85rem;  /* Smaller font size */
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-wa:hover {
    background-color: #20ba5a;
    color: #ffffff;
}

/* Specific styling for the floating/sticky chat bar button */
.sticky-bar .live-chat-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}



/* Make Footer Social Buttons Smaller and Compact */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease, transform 150ms ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Compact Footer Social Buttons */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease, transform 150ms ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Perfect Header Logo Sizing */
header .logo img {
    height: 50px;
    width: auto;
    display: block;
    max-height: 100%;
}

@media (max-width: 768px) {
    header .logo img {
        height: 40px;
    }
}

/* Professional High-End Logo Styling for Icon + Text */
header .logo {
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
}

header .logo img {
    height: 82px; /* Generous height so both the top icon and bottom name are sharp and readable */
    width: auto;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast; /* Keeps text edges clean and sharp */
    filter: brightness(1.3) contrast(1.25) saturate(1.4); /* Maximum vibrant gold pop */
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25)); /* Adds clean depth against the background */
}

/* Mobile Responsiveness: Keeps both parts visible without crowding the header */
@media (max-width: 768px) {
    header .logo img {
        height: 60px; /* Perfectly balanced for mobile phones */
    }
}






/* Professional Page Hero Styling */


/* Dark overlay to hide background distraction and make text readable */


.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 2.1rem;
    max-width: 600px;
    line-height: 1.6;
}
 
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 15px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-hero p {
        font-size: 0.95rem;
    }
}

/* Subtle hero background pan animation (respects users' reduced-motion setting) */
@media (prefers-reduced-motion: no-preference) {
   /* faster, horizontal pan with gentle zoom for more dynamic hero */
   .hero::before {
       animation: hero-pan 16s ease-in-out infinite;
       transform-origin: center;
   }

   @keyframes hero-pan {
       0% { transform: scale(1) translateX(0); }
       25% { transform: scale(1.02) translateX(-3%); }
       50% { transform: scale(1.04) translateX(0); }
       75% { transform: scale(1.02) translateX(3%); }
       100% { transform: scale(1) translateX(0); }
   }
}

/* Slightly stronger hover and image zoom for product cards */
.product-card:hover {
   transform: translateY(-8px) scale(1.01);
   box-shadow: 0 18px 48px rgba(0,0,0,0.08);
   border-color: var(--accent);
}

.product-card:hover .product-img-box img,
.product-card:hover img {
   transform: scale(1.08);
}

/* Product modal (image preview) */
.product-modal {
   position: fixed;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2200;
   opacity: 0;
   pointer-events: none;
   transition: opacity 260ms ease;
}

.product-modal.open {
   opacity: 1;
   pointer-events: auto;
}

.product-modal-overlay {
   position: absolute;
   inset: 0;
   background: rgba(0,0,0,0.6);
   backdrop-filter: blur(3px);
   opacity: 0;
   transition: opacity 260ms ease;
}

.product-modal.open .product-modal-overlay {
   opacity: 1;
}

.product-modal-content {
   position: relative;
   max-width: 980px;
   width: calc(100% - 40px);
   background: var(--white);
   border-radius: 12px;
   padding: 18px;
   display: flex;
   gap: 20px;
   align-items: center;
   box-shadow: 0 30px 80px rgba(0,0,0,0.35);
   transform: scale(0.98) translateY(6px);
   transition: transform 260ms cubic-bezier(.2,.9,.3,1), opacity 220ms ease;
   opacity: 0;
}

.product-modal.open .product-modal-content {
   transform: scale(1) translateY(0);
   opacity: 1;
}

.product-modal-body {
   display: flex;
   gap: 20px;
   align-items: center;
   width: 100%;
}

.modal-product-img {
   width: 48%;
   max-height: 520px;
   object-fit: contain;
   border-radius: 8px;
   background: #faf7f2;
   padding: 8px;
}

.modal-product-info {
   width: 52%;
   color: var(--text);
}

.product-modal-close {
   position: absolute;
   top: 8px;
   right: 10px;
   background: transparent;
   border: none;
   font-size: 28px;
   color: var(--text-muted);
   cursor: pointer;
}

.modal-product-name {
   font-family: 'Cinzel', serif;
   margin-bottom: 8px;
   font-size: 1.4rem;
}

.modal-product-desc {
   margin-bottom: 12px;
   color: var(--text-muted);
}

.modal-product-price {
   font-weight: 700;
   font-size: 1.1rem;
   margin-bottom: 14px;
   color: var(--primary);
}

/* Responsive modal stacking */
@media (max-width: 760px) {
   .product-modal-content {
       flex-direction: column;
       padding: 12px;
   }

   .modal-product-img,
   .modal-product-info {
       width: 100%;
   }

   .modal-product-img {
       max-height: 320px;
   }
}

/* Improve accessibility focus styles */
.product-modal-close:focus,
.modal-order-btn:focus {
   outline: 3px solid rgba(197,168,128,0.25);
   outline-offset: 3px;
}
