:root {
    --primary: #ed9a23;
    --primary-foreground: #ffffff;
    --background: #f6f1e8;
    --foreground: #4e3f35;
    --card: #fffdfa;
    --card-foreground: #4e3f35;
    --popover: #fffdfa;
    --popover-foreground: #4e3f35;
    --secondary: #efe5d7;
    --secondary-foreground: #4e3f35;
    --muted: #efe7dc;
    --muted-foreground: #6a5a4d;
    --accent: #ed9a23;
    --accent-foreground: #ffffff;
    --destructive: #b02a1d;
    --destructive-foreground: #ffffff;
    --border: #d8c8b3;
    --input: #efe5d7;
    --ring: #4e3f35;
    --sidebar: #4e3f35;
    --sidebar-foreground: #fff8ef;
    --sidebar-primary: #ed9a23;
    --sidebar-primary-foreground: #4e3f35;
    --sidebar-accent: #6a5446;
    --sidebar-accent-foreground: #fff8ef;
    --sidebar-border: #6a5446;
    --sidebar-ring: #ed9a23;
    --chart-1: #ed9a23;
    --chart-2: #4e3f35;
    --chart-3: #d07b22;
    --chart-4: #7a5c45;
    --chart-5: #b78a5d;
}

body {
    background: radial-gradient(circle at top left, #fff8ef 0%, #f6f1e8 40%, #ece2d3 100%);
}

.mt-brand-logo-wrap {
    background: #ffffff !important;
    border: 1px solid #d8c8b3;
    overflow: hidden;
}

.mt-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fffdfa;
    padding: 2px;
}

.mt-slider {
    position: relative;
    margin: 0 auto 1.25rem;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    box-shadow: 0 10px 30px rgba(78, 63, 53, 0.12);
}

.mt-slide {
    min-height: min(76vh, 760px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
}

.mt-slide.active {
    display: block;
}

.mt-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(62, 39, 26, 0.72), rgba(237, 154, 35, 0.25));
}

.mt-slide-content {
    position: relative;
    z-index: 2;
    color: #fff8ef;
    max-width: 820px;
    min-height: min(76vh, 760px);
    margin: 0 auto;
    padding: 2.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mt-slide-content h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.mt-slide-content p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    color: #ffefe0;
}

.mt-slide-btn {
    display: inline-block;
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    background: #ed9a23;
    color: #fff;
    font-weight: 700;
}

.mt-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.mt-slider-prev {
    left: 16px;
}

.mt-slider-next {
    right: 16px;
}

.mt-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    z-index: 3;
}

.mt-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
}

.mt-slide-dot.active {
    background: #ed9a23;
}

@media (max-width: 768px) {
    .mt-slide { min-height: 320px; }
    .mt-slide-content { min-height: 320px; }
    .mt-slider-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}
