:root {
    --mc-bg: #f8f5ef;
    --mc-surface: #ffffff;
    --mc-text: #1f2630;
    --mc-muted: #6d7582;
    --mc-primary: #233a58;
    --mc-primary-soft: #e8edf4;
    --mc-border: #ddd4c5;
}

html,
body {
    background: linear-gradient(180deg, #f3ece2 0%, #f8f5ef 24%, #f8f5ef 100%);
    color: var(--mc-text);
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.nav-clean {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--mc-border);
    backdrop-filter: blur(8px);
}

.brand-mark {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--mc-text);
}

.site-logo {
    width: 138px;
    height: auto;
    display: block;
}

.nav-link {
    color: var(--mc-muted);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--mc-primary);
}

.social-links {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.social-links a {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(35, 58, 88, 0.22);
    color: var(--mc-primary);
    background: rgba(255, 255, 255, 0.78);
}

.social-links a:hover {
    color: #fff;
    background: var(--mc-primary);
    border-color: var(--mc-primary);
}

.social-links-header a {
    width: 1.85rem;
    height: 1.85rem;
}

.hero-section h1 {
    letter-spacing: -0.03em;
}

.hero-with-banner {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--mc-border);
    aspect-ratio: 3 / 1.3;
    min-height: 0;
    display: flex;
    align-items: center;
}

.hero-with-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 26, 30, 0.55), rgba(23, 24, 28, 0.36)),
        url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-with-banner .container {
    position: relative;
    z-index: 1;
}

.hero-with-banner h1,
.hero-with-banner p {
    color: #f9f6f1;
}

.hero-with-banner .badge {
    background-color: rgba(255, 255, 255, 0.94) !important;
}

.hero-with-banner .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.hero-with-banner .btn-outline-light:hover {
    color: #1f2a3d;
    background-color: #fff;
}

.trust-strip-wrap {
    margin-top: -22px;
    position: relative;
    z-index: 2;
}

.trust-strip {
    background: var(--mc-surface);
    border: 1px solid var(--mc-border);
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(27, 29, 34, 0.07);
}

.trust-strip span {
    font-size: 0.9rem;
    color: var(--mc-muted);
    white-space: nowrap;
}

.section-copy {
    max-width: 760px;
    margin-inline: auto;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    color: #7b684f;
    font-weight: 600;
}

.value-card {
    background: #fffdfa;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
}

.value-card h3 {
    margin-bottom: 0.45rem;
}

.value-card-animated {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 239, 0.96) 100%);
    box-shadow: 0 14px 34px rgba(27, 29, 34, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-card-animated::before {
    content: '';
    position: absolute;
    inset: auto -20% -35% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 199, 156, 0.28) 0%, rgba(230, 199, 156, 0) 72%);
    pointer-events: none;
}

.value-card-animated:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(27, 29, 34, 0.11);
    border-color: #cbb596;
}

.value-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: #233a58;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.95rem;
    letter-spacing: 0.06em;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

[data-reveal].is-visible {
    animation: revealUp 560ms ease forwards;
}

.btn-primary {
    background-color: var(--mc-primary);
    border-color: var(--mc-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #173153;
    border-color: #173153;
}

.small-link {
    color: var(--mc-primary);
    text-decoration: none;
}

.small-link:hover {
    text-decoration: underline;
}

.product-card {
    background: #fffcf8;
    border: 1px solid var(--mc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card .card-img-top {
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 35, 60, 0.09);
}

.product-gallery-main-wrap {
    background: #fff;
    overflow: hidden;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
}

.product-thumb-btn {
    border: 1px solid var(--mc-border);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #fff;
}

.product-thumb-btn img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-thumb-btn.active {
    border-color: var(--mc-primary);
    box-shadow: 0 0 0 2px rgba(35, 58, 88, 0.16);
}

.account-stat {
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    padding: 1rem;
    background: #fffdfa;
}

.order-status-chip {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
}

.order-status-pending {
    background: #fff4dc;
    color: #8f6200;
}

.order-status-processing {
    background: #e8f2ff;
    color: #1f4f94;
}

.order-status-completed {
    background: #e8f8ed;
    color: #1f7a44;
}

.order-status-cancelled {
    background: #fde9e9;
    color: #9b2f2f;
}

.price-tag {
    color: var(--mc-primary);
    font-weight: 700;
}

.card,
.table,
.form-control,
.form-select,
textarea {
    border-color: var(--mc-border) !important;
}

.site-footer {
    background: linear-gradient(180deg, #1f2c41 0%, #172233 100%);
    color: #dce4ef;
}

.site-footer .text-muted {
    color: #b8c3d1 !important;
}

.footer-logo {
    width: 132px;
    height: auto;
    display: block;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fbff;
}

.footer-tagline {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d7bc8f;
}

.footer-copy {
    max-width: 460px;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #eef3fb;
}

.footer-links li + li {
    margin-top: 0.45rem;
}

.footer-links a {
    color: #c9d4e3;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.site-footer .social-links a {
    border-color: rgba(201, 212, 227, 0.35);
    background: rgba(255, 255, 255, 0.02);
    color: #dce4ef;
}

.site-footer .social-links a:hover {
    background: #fff;
    color: #1f2c41;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 212, 227, 0.2);
}

.story-panel {
    background: #fffdfa;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 12px 32px rgba(27, 29, 34, 0.05);
}

.page-hero {
    padding-top: 4rem;
}

.legal-content {
    background: #fffdfa;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 12px 32px rgba(27, 29, 34, 0.05);
}

.legal-content h2 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--mc-muted);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.92rem;
}

.map-embed-wrap {
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    overflow: hidden;
    min-height: 340px;
    background: #f3eee6;
}

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

.blog-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--mc-border);
}

.blog-cover-large {
    aspect-ratio: 16 / 9;
}

.blog-content {
    line-height: 1.75;
    color: var(--mc-text);
}

.blog-trix-editor {
    background: #fff;
    border: 1px solid var(--mc-border);
    border-radius: 10px;
    min-height: 320px;
}

.trix-button-group {
    border-color: var(--mc-border) !important;
}


/* Section background */

.philosophy-section{
background: linear-gradient(135deg,#f8fafc,#eef3f8);
}

/* Story container */

.story-panel{
background:white;
box-shadow:0 20px 40px rgba(0,0,0,.06);
}

/* Feature cards */

.feature-card{
background:#ffffff;
border-radius:10px;
border:1px solid #eef1f5;
transition:all .35s ease;
animation:fadeUp .8s ease forwards;
opacity:0;
}

/* stagger animation */

.feature-card:nth-child(1){animation-delay:.1s;}
.feature-card:nth-child(2){animation-delay:.25s;}
.feature-card:nth-child(3){animation-delay:.4s;}

/* hover animation */

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 25px rgba(0,0,0,.08);
border-color:#e2e8f0;
}

/* load animation */

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



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

@media (max-width: 767px) {
    .hero-section {
        padding-top: 2rem;
    }

    .hero-section .display-5 {
        font-size: 2rem;
    }

    .hero-with-banner {
        aspect-ratio: auto;
        min-height: 420px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trust-strip {
        border-radius: 14px;
        justify-content: flex-start;
    }

    .site-logo,
    .footer-logo {
        width: 118px;
    }

    .social-links-header {
        margin-top: 0.35rem;
    }

    .legal-content,
    .story-panel {
        padding: 1.4rem;
    }
}

/* modern menu */

.modern-menu .nav-link{
position:relative;
padding:8px 14px;
font-weight:500;
color:#333;
transition:all .25s ease;
}

/* hover color */

.modern-menu .nav-link:hover{
color:#0d6efd;
}

/* animated underline */

.modern-menu .nav-link::after{
content:"";
position:absolute;
left:50%;
bottom:-4px;
width:0;
height:2px;
background:#0d6efd;
transition:all .3s ease;
transform:translateX(-50%);
}

.modern-menu .nav-link:hover::after{
width:60%;
}

/* active menu item */

.modern-menu .nav-link.active{
color:#0d6efd;
font-weight:600;
}

.modern-menu .nav-link.active::after{
width:60%;
}
