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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #f4efe8;
    position: relative;
}

/* Hero Background */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/ShopBackground2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(250, 246, 240, 0.72) 0%, rgba(250, 246, 240, 0.4) 32%, rgba(250, 246, 240, 0) 62%);
    z-index: 1;
    pointer-events: none;
}

/* Floating Navigation Bar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(44, 38, 32, 0.72);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(40, 30, 20, 0.28);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.get-started-btn,
.enquire-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.get-started-btn {
    background: rgba(255, 255, 255, 0.96);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.96);
}

.get-started-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* Secondary action: accent-colored outline so it doesn't compete with the
   solid "Shop patches" primary CTA next to it. */
.enquire-btn {
    background: transparent;
    color: #e9d9c4;
    border: 1px solid rgba(180, 137, 90, 0.55);
}

.enquire-btn:hover {
    background: rgba(180, 137, 90, 0.16);
    border-color: rgba(180, 137, 90, 0.9);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Enquiries Modal */
.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 200;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 24, 16, 0.55);
    backdrop-filter: blur(6px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(560px, calc(100vw - 2rem));
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: #faf6f0;
    border: 1px solid rgba(20, 15, 10, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.25rem;
    box-shadow: 0 32px 80px rgba(40, 30, 20, 0.3);
}

.modal-panel h2 {
    color: #2c2620;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 0.75rem;
}

.modal-subtext {
    color: #5c5347;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(20, 15, 10, 0.12);
    background: rgba(20, 15, 10, 0.03);
    color: #5c5347;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid label {
    display: grid;
    gap: 0.45rem;
    color: #2c2620;
    font-size: 0.92rem;
}

/* Honeypot: kept in normal layout flow (not display:none) so bots that
   check computed visibility still fill it in, but positioned off-screen
   so real users never see it. */
.form-grid label.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(20, 15, 10, 0.14);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #2c2620;
    font: inherit;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: #a39a8c;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: 2px solid rgba(180, 137, 90, 0.6);
    border-color: rgba(180, 137, 90, 0.6);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #2c2620;
    color: #fff;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: #b4895a;
    transform: translateY(-2px);
}

.form-status {
    min-height: 1.2rem;
    margin-top: 0.9rem;
    color: #7a6f60;
    font-size: 0.9rem;
}

/* Assistant Invite Panel */
.assistant-panel {
    position: fixed;
    top: calc(50% + 130px);
    left: calc(50% - 130px);
    transform: translate(-50%, -50%);
    z-index: 50;
    width: min(640px, 92vw);
}

.assistant-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(20, 15, 10, 0.08);
    border-radius: 24px;
    padding: 1.6rem 2.4rem;
    box-shadow: 0 24px 60px rgba(40, 30, 20, 0.18);
    animation: fadeInUp 1s ease-out;
}

.assistant-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b4895a;
    margin-bottom: 1.5rem;
}

.assistant-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #2c2620;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.assistant-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5c5347;
    margin-bottom: 1.1rem;
}

.assistant-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid rgba(20, 15, 10, 0.14);
    border-radius: 999px;
    padding: 0.55rem 0.6rem 0.55rem 1rem;
    box-shadow: 0 6px 16px rgba(40, 30, 20, 0.06);
}

.assistant-input input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: #2c2620;
    font-family: inherit;
}

.assistant-input input::placeholder {
    color: #a39a8c;
}

.assistant-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #7a6f60;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.assistant-icon-btn:hover {
    background: rgba(180, 137, 90, 0.12);
    color: #b4895a;
}

.assistant-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #2c2620;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.assistant-send-btn:hover {
    background: #b4895a;
    transform: translateX(1px);
}

.assistant-icon-btn:disabled,
.assistant-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.assistant-icon-btn:disabled:hover {
    background: transparent;
    color: #7a6f60;
}

.assistant-send-btn:disabled:hover {
    background: #2c2620;
    transform: none;
}

.assistant-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.suggestion-pill {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(20, 15, 10, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: #4a4238;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-pill:hover {
    background: #fff;
    border-color: rgba(180, 137, 90, 0.4);
    color: #2c2620;
    transform: translateY(-1px);
}

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

@media (max-width: 900px) {
    body {
        overflow-y: auto;
    }

    .navbar {
        left: 1rem;
        right: 1rem;
        padding: 1rem 1.25rem;
    }

    .assistant-panel {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        margin: 8rem 1.25rem 3rem;
    }
}
