/* Tula Bags — modern-brand variant (dusty rose, cognac, warm stone — leather handbag niche) */

body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Dusty rose / burgundy accent (handbag boutique palette) */
.bg-coral-100 {
    background-color: #f5e8eb;
}
.bg-coral-200 {
    background-color: #e8ced4;
}
.bg-coral-500 {
    background-color: #a65d6e;
}
.bg-coral-600 {
    background-color: #8a4a5a;
}
.text-coral-200 {
    color: #e8ced4;
}
.text-coral-500 {
    color: #a65d6e;
}
.text-coral-600 {
    color: #8a4a5a;
}
.border-coral-500 {
    border-color: #a65d6e;
}
.ring-coral-500 {
    --tw-ring-color: #a65d6e;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-up-delay {
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#header.scrolled,
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.open {
    display: block;
}

/* ----- Header navigation (custom breakpoints: tailwind.css build omits lg: variants) ----- */

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
}

.header-logo-img {
    display: block;
    height: 2.5rem;
    width: auto;
}

@media (min-width: 768px) {
    .header-logo-img {
        height: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .header-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 1rem;
    }

    .header-logo-cell {
        justify-self: start;
    }

    .header-nav-cell {
        justify-self: center;
        min-width: 0;
    }

    .header-actions-cell {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

#desktop-nav.nav-desktop-shell {
    display: none;
}

#header-cta-bar.header-cta-desktop {
    display: none;
}

.header-burger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #292524;
    border-radius: 0.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-burger-btn:hover {
    background: rgba(166, 93, 110, 0.12);
    color: #8a4a5a;
}

.mobile-menu-drawer {
    background: transparent;
}

.mobile-menu-inner {
    margin: 0 0.5rem 0.5rem;
    padding: 0.75rem 0;
    background: #ffffff;
    border: 1px solid #e7e5e4;
    border-radius: 0 0 1.25rem 1.25rem;
    box-shadow: 0 18px 40px rgba(28, 25, 23, 0.12);
}

.mobile-menu-inner a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: #44403c;
    text-decoration: none;
    border-radius: 0.75rem;
    margin: 0 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-inner a:hover {
    background: #f5e8eb;
    color: #8a4a5a;
}

.mobile-menu-inner a.mobile-cta {
    margin-top: 0.75rem;
    text-align: center;
    background: #a65d6e;
    color: #fff !important;
    font-weight: 600;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.mobile-menu-inner a.mobile-cta:hover {
    background: #8a4a5a;
    color: #fff !important;
}

@media (min-width: 1024px) {
    #desktop-nav.nav-desktop-shell {
        display: inline-flex !important;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.125rem;
        padding: 0.2rem;
        max-width: min(100%, 44rem);
        justify-content: center;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(231, 229, 228, 0.98);
        border-radius: 9999px;
        box-shadow:
            0 4px 24px rgba(28, 25, 23, 0.07),
            0 1px 0 rgba(255, 255, 255, 0.85) inset;
    }

    #header.scrolled #desktop-nav.nav-desktop-shell,
    .site-header.scrolled #desktop-nav.nav-desktop-shell {
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 4px 20px rgba(28, 25, 23, 0.09);
    }

    .nav-desktop-shell a {
        display: inline-block;
        padding: 0.45rem 0.7rem;
        border-radius: 9999px;
        color: #57534e;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.8125rem;
        letter-spacing: 0.02em;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    @media (min-width: 1100px) {
        .nav-desktop-shell a {
            padding: 0.5rem 0.95rem;
            font-size: 0.875rem;
        }
    }

    .nav-desktop-shell a:hover {
        color: #8a4a5a;
        background: rgba(166, 93, 110, 0.14);
    }

    .nav-desktop-shell a:focus-visible {
        outline: 2px solid #a65d6e;
        outline-offset: 2px;
    }

    .nav-desktop-shell a.nav-link-active {
        color: #6d3545;
        background: rgba(166, 93, 110, 0.22);
        font-weight: 600;
    }

    #header-cta-bar.header-cta-desktop {
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
    }

    .header-cta-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0 1.2rem;
        height: 2.5rem;
        border-radius: 9999px;
        background: #a65d6e;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 10px 25px -5px rgba(166, 93, 110, 0.38);
        transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .header-cta-pill:hover {
        opacity: 0.93;
        transform: translateY(-1px);
        box-shadow: 0 14px 28px -4px rgba(166, 93, 110, 0.42);
    }

    .header-burger-btn {
        display: none !important;
    }

    #mobile-menu.mobile-menu-drawer {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    #desktop-nav.nav-desktop-shell,
    #header-cta-bar.header-cta-desktop {
        display: none !important;
    }

    .header-burger-btn {
        display: inline-flex !important;
    }

    #mobile-menu.mobile-menu-drawer:not(.hidden) {
        display: block !important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4;
}

::-webkit-scrollbar-thumb {
    background: #a8a29e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #78716c;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #a65d6e;
    outline-offset: 2px;
}

input::placeholder {
    color: #a8a29e;
}

input:focus {
    outline: none;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.image-shine {
    position: relative;
    overflow: hidden;
}

.image-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.image-shine:hover::after {
    left: 100%;
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.bg-gradient-warm {
    background: linear-gradient(135deg, #fafaf9 0%, #fff1f2 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #292524 0%, #1c1917 100%);
}

.btn-primary {
    background-color: #a65d6e;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgb(166 93 110 / 0.3);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(166 93 110 / 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #44403c;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 2px solid #d6d3d1;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #a8a29e;
    background-color: #fafaf9;
}

#testimonial-carousel {
    position: relative;
}

#testimonial-track {
    display: flex;
    transition: transform 0.3s ease;
}

#testimonial-track > div {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d6d3d1;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: #a65d6e;
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats .w-px {
        width: 100%;
        height: 1px;
    }
}

@media print {
    header,
    footer,
    #mobile-menu,
    button,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

::selection {
    background-color: #a65d6e;
    color: white;
}

::-moz-selection {
    background-color: #a65d6e;
    color: white;
}
