/* 
 * Bootstrap 5 Overrides for AWH Clone
 * This file contains customizations to Bootstrap default styles
 */

/* ── Bootstrap 5 primary colour tokens → Emerald (DESIGN.md) ──── */
:root {
    --bs-primary:         #0F5132;
    --bs-primary-rgb:     15, 81, 50;
    --bs-link-color:      #1A1F1B;
    --bs-link-hover-color: #0F5132;
}

/* Override Bootstrap utility .btn-primary to use emerald */
.btn-primary {
    --bs-btn-bg:          #0F5132;
    --bs-btn-border-color:#0F5132;
    --bs-btn-color:       #FFFDF8;
    --bs-btn-hover-bg:    #0A3A24;
    --bs-btn-hover-border-color: #0A3A24;
    --bs-btn-hover-color: #FFFDF8;
    --bs-btn-active-bg:   #0A3A24;
    --bs-btn-active-border-color: #0A3A24;
    --bs-btn-active-color: #FFFDF8;
    --bs-btn-disabled-bg: #0F5132;
    --bs-btn-disabled-border-color: #0F5132;
    --bs-btn-disabled-color: #FFFDF8;
    border-radius: 9999px;
}

/* Remove Bootstrap focus outlines and replace with custom styles */
.btn:focus,
.form-control:focus,
.page-link:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Custom focus styles for accessibility */
.btn:focus-visible,
.form-control:focus-visible,
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
    outline: 2px solid #0F5132 !important;
    outline-offset: 2px;
}

/* Override default dropdown styles */
.dropdown-menu {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(26, 31, 27, 0.2);
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #222222;
}

.dropdown-item:hover {
    background-color: #f7f7f7;
    color: #222222;
}

/* Override default navbar styles */
.navbar {
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

/* Custom container fluid for full-width sections */
.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1280px;
    }
}

/* Customize Bootstrap grid gutters */
.row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

@media (min-width: 768px) {
    .row.g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

/* Custom button styles */
.btn-light {
    background-color: #ffffff;
    border-color: #dddddd;
}

.btn-light:hover {
    background-color: #f7f7f7;
    border-color: #dddddd;
}

/* Custom form control styles */
.form-control {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #222222;
}

.form-control:focus {
    border-color: #222222;
}

/* Custom badge styles */
.badge {
    font-weight: 500;
    padding: 4px 8px;
}

/* Utility classes */
.rounded-xl {
    border-radius: 16px !important;
}

.shadow-soft {
    box-shadow: 0 6px 16px rgba(26, 31, 27, 0.12) !important;
}

.shadow-medium {
    box-shadow: 0 8px 28px rgba(26, 31, 27, 0.28) !important;
}

/* Custom transitions */
.transition-all {
    transition: all 0.2s ease;
}

/* Hide scrollbar but keep functionality */
.scrollbar-hidden {
    -ms-overflow-style: none;  /* IE and Edge */
}

@supports (scrollbar-width: none) {
    .scrollbar-hidden {
        scrollbar-width: none;  /* Firefox */
    }
}

.scrollbar-hidden::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}


/*
 * Asian Wedding Hub (AWH) - Main Stylesheet
 * Wedding services marketplace design
 */

:root {
    /* AWH Color Palette — DESIGN.md (emerald + champagne + ivory) */
    --awh-emerald: #0F5132;
    --awh-emerald-deep: #0A3A24;
    --awh-gold: #C9A96A;
    --awh-dark: #1A1F1B;
    --awh-gray-dark: #5C6360;
    --awh-gray: #8C9290;
    --awh-gray-light: #E5DFD2;
    --awh-gray-extra-light: #F4F0E8;
    --awh-white: #FFFDF8;

    /* Font Sizes — generic ladder, retained for legacy consumers */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;

    /* Spec type ramp from DESIGN.md (sized + line-height pairs) */
    --type-display-lg-size: 72px;  --type-display-lg-line: 76px;
    --type-display-md-size: 56px;  --type-display-md-line: 60px;
    --type-headline-lg-size: 44px; --type-headline-lg-line: 52px;
    --type-headline-md-size: 32px; --type-headline-md-line: 40px;
    --type-headline-sm-size: 24px; --type-headline-sm-line: 32px;
    --type-title-lg-size: 20px;    --type-title-lg-line: 28px;
    --type-title-md-size: 18px;    --type-title-md-line: 26px;
    --type-body-lg-size: 18px;     --type-body-lg-line: 30px;
    --type-body-md-size: 16px;     --type-body-md-line: 26px;
    --type-body-sm-size: 14px;     --type-body-sm-line: 22px;
    --type-label-lg-size: 14px;    --type-label-lg-line: 20px;
    --type-label-md-size: 13px;    --type-label-md-line: 18px;
    --type-label-sm-size: 12px;    --type-label-sm-line: 16px;
    --type-caption-size: 12px;     --type-caption-line: 18px;
    --type-display-family: 'Cormorant Garamond', Georgia, serif;
    --type-headline-family: 'Cormorant Garamond', Georgia, serif;
    --type-body-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;

    /* Soft, ink-tinted shadows (DESIGN.md elevation scale) */
    --awh-shadow-1: 0 1px 2px rgba(26, 31, 27, 0.04);
    --awh-shadow-2: 0 6px 20px rgba(26, 31, 27, 0.06);
    --awh-shadow-3: 0 12px 32px rgba(26, 31, 27, 0.08);
    --awh-shadow-4: 0 24px 48px rgba(26, 31, 27, 0.10);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--awh-dark);
    line-height: 1.5;
    padding-top: 80px; /* Space for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Bar */
#mainNavbar {
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1030;
    transition: all 0.3s ease;
}

#mainNavbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(26, 31, 27, 0.1);
    border-bottom-color: var(--awh-gray-light);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Logo */
.awh-logo {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--awh-emerald);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

/* Container */
.search-container {
    margin: 0 24px;
    flex-grow: 1;
    max-width: 460px;
}

/* Main Box */
.search-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(26, 31, 27, 0.06);
    transition: all 0.25s ease;
}

.search-box:hover {
    box-shadow: 0 6px 28px rgba(26, 31, 27, 0.10);
}

/* Fields */
.search-field {
    flex: 1;
    padding: 6px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: transparent;
    padding: 0;
}

.search-field input::placeholder {
    color: #9ca3af;
}

/* Divider */
.search-divider {
    width: 1px;
    height: 28px;
    background-color: #e5e7eb;
}

/* Submit Button */
.search-submit {
    border: none;
    background: var(--awh-emerald);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.search-submit i {
    font-size: 14px;
}

.search-submit:hover {
    background: var(--awh-dark);
    transform: scale(1.05);
}

/* Focus State */
.search-field input:focus {
    color: #000;
}

/* Right Side Menu */
.host-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--awh-dark);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}

.host-link:hover {
    background-color: var(--awh-gray-extra-light);
}

.language-dropdown .btn,
.profile-dropdown .btn {
    background-color: var(--awh-white);
    border: 1px solid var(--awh-gray-light);
    padding: 8px;
    color: var(--awh-dark);
    transition: all 0.2s ease;
}

.language-dropdown .btn:hover,
.profile-dropdown .btn:hover {
    box-shadow: 0 2px 4px rgba(26, 31, 27, 0.18);
}

.profile-btn {
    padding: 6px 12px 6px 8px;
}

/* Mobile Search */
.mobile-search-container {
    padding: 16px 24px;
    background-color: var(--awh-white);
    border-bottom: 1px solid var(--awh-gray-light);
}

.mobile-search-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-btn {
    background-color: var(--awh-white);
    border: 1px solid var(--awh-gray-light);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    color: var(--awh-dark);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--awh-dark);
}

.search-icon-btn {
    background-color: var(--awh-emerald);
    color: var(--awh-white);
    border: none;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background-color: var(--awh-white);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-2xl);
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--awh-emerald-deep);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--awh-gray-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}
/* Hero Search Box */
.hero-search-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(26, 31, 27, 0.08);
    padding: 12px;
    max-width: 100%;
}

/* Grid layout */
.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

/* Input columns */
.search-col {
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.search-col:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 31, 27, 0.05);
}

/* Labels */
.search-col label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* Inputs */
.search-col .form-control {
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    width: 100%;
    outline: none;
}

.search-col .form-control::placeholder {
    color: #9ca3af;
}

/* Focus effect */
.search-col:focus-within {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(15, 81, 50, 0.20); /* emerald focus ring */
}



.btn-search {
    background-color: var(--awh-emerald);
    color: var(--awh-white);
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 18px;
    font-size: var(--font-size-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-search:hover {
    background-color: var(--awh-emerald-deep);
}

/* Category Section */
.category-section {
    background-color: var(--awh-white);
    border-bottom: 1px solid var(--awh-gray-light);
    position: relative;
}

.category-scroll-container {
    position: relative;
    overflow: hidden;
}

.category-scroll {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding: 4px 0 20px;
    scroll-behavior: smooth;
}

@supports (scrollbar-width: none) {
    .category-scroll {
        scrollbar-width: none; /* Firefox */
    }
}

.category-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--awh-gray-dark);
    position: relative;
}

.category-btn:hover {
    color: var(--awh-dark);
}

.category-btn.active {
    color: var(--awh-emerald-deep);
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--awh-emerald-deep);
}

.category-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.category-btn span {
    font-size: var(--font-size-xs);
    font-weight: 500;
    white-space: nowrap;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--awh-white);
    border: 1px solid var(--awh-gray-light);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(26, 31, 27, 0.1);
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    box-shadow: 0 4px 8px rgba(26, 31, 27, 0.15);
}

.scroll-left {
    left: 12px;
}

.scroll-right {
    right: 12px;
}

/* Listings Section */
.listings-section {
    background-color: var(--awh-white);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--awh-emerald-deep);
}

.listing-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--awh-white);
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 31, 27, 0.12);
    padding: 10px;
}

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .card-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background-color: var(--awh-white);
    transform: scale(1.1);
}

.wishlist-btn:hover i {
    color: var(--awh-emerald);
}

.wishlist-btn i {
    color: var(--awh-dark);
    font-size: 16px;
    transition: color 0.2s ease;
}

.card-body {
    padding: 12px 0 0 0;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.card-rating i {
    color: var(--awh-emerald);
    font-size: 12px;
}

.card-rating span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--awh-dark);
}

.rating-count {
    color: var(--awh-gray-dark);
}

.card-location {
    font-size: var(--font-size-sm);
    color: var(--awh-gray-dark);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-description {
    font-size: var(--font-size-sm);
    color: var(--awh-dark);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-price {
    font-size: var(--font-size-sm);
    color: var(--awh-dark);
}

.card-price .price {
    font-weight: 700;
}

/* Experience Section */
.experience-section {
    background-color: var(--awh-white);
}

.experience-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 31, 27, 0.15);
}

.experience-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 2 / 1;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-xl);
    color: var(--awh-white);
}

.experience-overlay h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--awh-white);
}

.experience-overlay p {
    font-size: var(--font-size-lg);
    margin-bottom: 16px;
    opacity: 0.9;
}

.experience-overlay .btn {
    align-self: flex-start;
    background-color: var(--awh-white);
    color: var(--awh-dark);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.2s ease;
}

.experience-overlay .btn:hover {
    background-color: var(--awh-gray-extra-light);
    transform: scale(1.05);
}

/* =========================================== */
/* FOOTER — Navy redesign                      */
/* =========================================== */

.awh-footer-main {
    background-color: var(--awh-navy);
    color: #ffffff;
    padding: 60px 0 0;
}

.awh-footer-main .awh-footer-brand__name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.3px;
    margin-bottom: 10px;
}

.awh-footer-main .awh-footer-brand__desc {
    font-size: 13px;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin-bottom: 6px;
}

.awh-footer-main .awh-footer-brand__sub {
    font-size: 12px;
    color: rgba(255,255,255,.52);
    line-height: 1.6;
    margin-bottom: 22px;
}

.awh-footer-main .awh-footer-cta {
    display: inline-block;
    background: #0A3A24;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
    white-space: nowrap;
}

.awh-footer-main .awh-footer-cta:hover {
    background: #a31550;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.awh-footer-main .awh-footer-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.awh-footer-main .footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: rgba(255,255,255,.5);
    margin-bottom: 16px;
}

.awh-footer-main .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awh-footer-main .footer-links li {
    margin-bottom: 11px;
}

.awh-footer-main .footer-links a {
    font-size: 13px;
    color: #ffffff !important;
    text-decoration: none;
    transition: color .2s ease;
    line-height: 1.4;
}

.awh-footer-main .footer-links a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.awh-footer-main .footer-links a:focus-visible {
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 2px;
    border-radius: 2px;
}

.awh-footer-main .awh-footer-divider,
hr.awh-footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.12);
    margin: 0;
    opacity: 1;
}

.awh-footer-bottom {
    background-color: var(--awh-navy-dark);
    padding: 16px 0;
    margin: 0;
    display: block;
    min-height: 0;
}
/* Defensive: any descendant utility class with bottom padding/margin was leaving
   an empty teal strip below the copyright. Reset to 0 here. */
.awh-footer-bottom > .container,
.awh-footer-bottom > .container > .row,
.awh-footer-bottom > .container > .row > [class*="col-"] {
    padding-bottom: 0;
    margin-bottom: 0;
}

.awh-footer-bottom .awh-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.awh-footer-bottom .awh-footer-copy a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    margin: 0 4px;
    transition: color .15s ease;
}

.awh-footer-bottom .awh-footer-copy a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.awh-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    font-size: 14px;
    text-decoration: none;
    margin-left: 6px;
    transition: background .2s ease, color .2s ease;
}

.awh-footer-social a:hover {
    background: rgba(255,255,255,.22);
    color: #ffffff;
}

.awh-footer-social a:focus-visible {
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 2px;
}

.awh-footer-supplier-cta {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 7px;
    padding: 7px 14px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.awh-footer-supplier-cta:hover {
    background: rgba(255,255,255,.1);
    color: #ffffff;
    border-color: rgba(255,255,255,.55);
    text-decoration: none;
}

.awh-footer-supplier-cta:focus-visible {
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .awh-footer-main {
        padding: 40px 0 0;
    }

    .awh-footer-main [class*="col-"] {
        margin-bottom: 28px;
    }

    .awh-footer-main .footer-heading {
        margin-bottom: 10px;
    }

    .awh-footer-bottom .awh-footer-copy {
        text-align: center;
        margin-bottom: 10px;
    }

    .awh-footer-social {
        text-align: center;
    }

    .awh-footer-social a {
        margin: 0 3px;
    }
}

/* Footer newsletter subscribe */
.awh-footer-subscribe {
    background: linear-gradient(135deg, #1A1F1B 0%, #0A3A24 100%);
    padding: 52px 0 44px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.awh-footer-subscribe::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201,169,106,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.awh-footer-subscribe__badge {
    display: inline-block;
    background: rgba(201,169,106,0.18);
    color: #C9A96A;
    border: 1px solid rgba(201,169,106,0.35);
    border-radius: 9999px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.awh-footer-subscribe__heading {
    color: #ffffff !important;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.awh-footer-subscribe__sub {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}
.awh-footer-subscribe__error {
    color: #f87171;
    font-size: 0.875rem;
    margin-bottom: 10px;
}
.awh-footer-subscribe__form {
    width: 100%;
}
.awh-footer-subscribe__input-wrap {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 31, 27,0.3);
}
.awh-footer-subscribe__input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 0.9375rem;
    outline: none;
    background: #ffffff;
    color: #1a1a2e;
}
.awh-footer-subscribe__input::placeholder {
    color: #9ca3af;
}
.awh-footer-subscribe__btn {
    background-color: #C9A96A;
    color: #1A1F1B;
    border: none;
    padding: 14px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    letter-spacing: 0.02em;
}
.awh-footer-subscribe__btn:hover {
    background-color: #FFFDF8;
    color: #1A1F1B;
}
.awh-footer-subscribe__note {
    color: rgba(255,255,255,0.4) !important;
    font-size: 0.78rem;
    margin-top: 12px;
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .awh-footer-subscribe {
        padding: 40px 0 32px;
    }
    .awh-footer-subscribe__input-wrap {
        flex-direction: column;
        border-radius: 8px;
    }
    .awh-footer-subscribe__input,
    .awh-footer-subscribe__btn {
        border-radius: 8px;
        width: 100%;
    }
    .awh-footer-subscribe__btn {
        margin-top: 8px;
    }
}

/* =========================================== */
/* =========================================== */
/* TESTIMONIALS */
/* =========================================== */

.awh-testimonials {
    background: #f8f5f2;
}
.awh-testimonials__badge {
    display: inline-block;
    background: #fff0f3;
    color: #b5404a;
    border: 1px solid #f7c5ca;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.awh-testimonials__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #1A1F1B;
    margin-bottom: 10px;
}
.awh-testimonials__sub {
    color: #6c757d;
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
}
.awh-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 16px rgba(15,28,63,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.awh-testimonial-card__stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.awh-testimonial-card__quote {
    color: #374151;
    font-size: 0.9625rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.awh-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0ede9;
    padding-top: 16px;
}
.awh-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b5404a, #e06070);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}
.awh-testimonial-card__name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #1A1F1B;
    line-height: 1.2;
}
.awh-testimonial-card__role {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* =========================================== */
/* MOBILE FOOTER MENU - Like Mobile App */
/* =========================================== */

.mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--awh-white);
    border-top: 1px solid var(--awh-gray-light);
    box-shadow: 0 -2px 10px rgba(26, 31, 27, 0.1);
    z-index: 1000;
    display: none;
    padding: 8px 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.mobile-footer-menu.active {
    display: block;
}

.mobile-footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 16px;
}

.mobile-footer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    min-height: 56px;
}

.mobile-footer-item:hover {
    background-color: var(--awh-gray-extra-light);
}

.mobile-footer-item.active {
    color: var(--awh-emerald);
}

.mobile-footer-item.active .mobile-footer-icon {
    color: var(--awh-emerald);
    transform: translateY(-2px);
}

.mobile-footer-item.active .mobile-footer-text {
    font-weight: 600;
}

.mobile-footer-icon {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--awh-gray-dark);
    transition: all 0.2s ease;
    position: relative;
}

.mobile-footer-text {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--awh-dark);
    transition: all 0.2s ease;
}

.mobile-footer-badge {
    position: absolute;
    top: -2px;
    right: 8px;
    background-color: var(--awh-emerald);
    color: var(--awh-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--awh-white);
}

.mobile-footer-search {
    background-color: var(--awh-emerald);
    color: var(--awh-white);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -16px;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-footer-search:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

.mobile-footer-search i {
    font-size: 22px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--awh-white);
    border-radius: 20px 20px 0 0;
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
    display: none;
}

.mobile-menu-panel.active {
    transform: translateY(0);
    display: block;
}

.mobile-menu-header {
    position: sticky;
    top: 0px;
    z-index: 11111111;
    background-color: white;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--awh-gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--awh-dark);
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--awh-gray-dark);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-content {
    padding: 24px;
}

.mobile-menu-section {
    margin-bottom: 32px;
}

.mobile-menu-section h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--awh-gray-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--awh-gray-extra-light);
    cursor: pointer;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--awh-gray-extra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--awh-dark);
    font-size: 18px;
}

.mobile-menu-details {
    flex: 1;
}

.mobile-menu-details h5 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--awh-dark);
    margin-bottom: 4px;
}

.mobile-menu-details p {
    font-size: var(--font-size-sm);
    color: var(--awh-gray-dark);
    margin: 0;
}

.mobile-menu-arrow {
    color: var(--awh-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-container {
        display: none !important;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-md);
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .search-col {
        border-right: none;
        border-bottom: 1px solid var(--awh-gray-light);
    }
    
    .search-col:last-child {
        border-bottom: none;
    }
    
    .experience-overlay h3 {
        font-size: var(--font-size-xl);
    }
    
    .experience-overlay p {
        font-size: var(--font-size-md);
    }
    
    /* Show mobile footer menu on tablets and smaller */
    .mobile-footer-menu {
        display: block;
    }
    
    /* (Mobile nav reservation moved to <768px where the bottom nav reliably renders) */
}

@media (max-width: 768px) {
    
    .hero-section {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-xl);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .footer-heading {
        font-size: var(--font-size-md);
    }
    
    .footer-links a {
        font-size: var(--font-size-sm);
    }
    
    /* Adjust mobile footer items */
    .mobile-footer-item {
        min-height: 52px;
        padding: 6px 2px;
    }
    
    .mobile-footer-icon {
        font-size: 18px;
    }
    
    .mobile-footer-text {
        font-size: 10px;
    }
    
    .mobile-footer-search {
        width: 52px;
        height: 52px;
        top: -14px;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .mobile-search-container {
        padding: 12px 16px;
    }
    
    .hero-title {
        font-size: var(--font-size-xl);
    }
    
    .category-btn {
        min-width: 70px;
    }
    
    .category-btn i {
        font-size: 20px;
    }
    
    .scroll-btn {
        display: none !important; /* Hide scroll buttons on mobile */
    }
    
    /* Further adjust mobile footer for small screens */
    .mobile-footer-nav {
        padding: 0 8px;
    }
    
    .mobile-footer-item {
        min-height: 48px;
        padding: 4px 1px;
    }
    
    .mobile-footer-icon {
        font-size: 16px;
    }
    
    .mobile-footer-text {
        font-size: 9px;
    }
    
    .mobile-footer-search {
        width: 48px;
        height: 48px;
        top: -12px;
    }
    
    .mobile-menu-panel {
        max-height: 90vh;
    }
    
    .mobile-menu-header {
        padding: 16px 20px 12px;
    }
    
    .mobile-menu-content {
        padding: 20px;
    }
}

/* Animation for active menu item */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mobile-footer-item.active .mobile-footer-icon {
    animation: pulse 0.5s ease;
}

/* Smooth transitions */
.mobile-footer-menu,
.mobile-menu-overlay,
.mobile-menu-panel {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

  .badge-group {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    gap: 4px;
}
/* Service Badge */
.service-badge {
    background-color: var(--awh-gray-dark);
    color: var(--awh-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
  }


/* Special Offer Ribbon */
.ribbon {
    background-color: var(--awh-emerald);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
}

/* ── Nav-tabs → Airbnb pill style ────────────────────────────── */
.awh-site .nav-tabs {
    border-bottom: none !important;
}

.awh-site .nav-tabs .nav-link {
    border: 1px solid #DDDDDD;
    border-radius: 999px;
    color: #717171;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.awh-site .nav-tabs .nav-link:hover {
    background: #f7f7f7;
    border-color: #222222;
    color: #222222;
}

.awh-site .nav-tabs .nav-link.active {
    background: #222222 !important;
    border-color: #222222 !important;
    color: #ffffff !important;
}

/* ── Fix Bootstrap's .btn-outline-2 ─────────────────────────── */
.awh-site .btn-outline-2 {
    border-color: #222222 !important;
    color: #222222 !important;
    background: transparent !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.awh-site .btn-outline-2:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   AWH USER DASHBOARD SIDEBAR — global override
   Overrides .user-dashboard .widget-area .links li a from
   inner-pages.css (specificity 0,3,2) via cascade order.
   Targets: .awh-user-sidebar .widget .links li a = (0,3,2)
═══════════════════════════════════════════════════════════════ */

/* Widget card */
.awh-user-sidebar .widget {
  border-radius: 14px !important;
  border: 1px solid #e4e7ec !important;
  box-shadow: 0 2px 12px rgba(26, 31, 27,.06) !important;
  background: #ffffff !important;
  padding: 8px !important;
}

/* List reset */
.awh-user-sidebar .widget .links,
.awh-user-sidebar .links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove dashed dividers from old theme */
.awh-user-sidebar .widget .links li,
.awh-user-sidebar .links li {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Nav links — flex row, no divider, rounded pill hover */
.awh-user-sidebar .widget .links li a,
.awh-user-sidebar .widget .links li button,
.awh-user-sidebar .links li a,
.awh-user-sidebar .links li button {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 12px !important;
  border-radius: 8px !important;
  border-bottom: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #555 !important;
  text-decoration: none !important;
  transition: background .15s, color .15s !important;
  width: 100% !important;
  text-align: left !important;
  border: none !important;
  background: none !important;
  cursor: pointer !important;
  position: static !important; /* kill old ::after positioning */
}

/* Kill the old left-bar ::after pseudo-element */
.awh-user-sidebar .widget .links li a::after,
.awh-user-sidebar .links li a::after {
  display: none !important;
  content: none !important;
}

/* Active + hover state — pink pill */
.awh-user-sidebar .widget .links li a:hover,
.awh-user-sidebar .widget .links li button:hover,
.awh-user-sidebar .widget .links li a.active,
.awh-user-sidebar .links li a:hover,
.awh-user-sidebar .links li button:hover,
.awh-user-sidebar .links li a.active {
  background: #F4ECDC !important;
  color: #0A3A24 !important;
}

/* Icons */
.awh-user-sidebar .widget .links li a i,
.awh-user-sidebar .widget .links li button i,
.awh-user-sidebar .links li a i,
.awh-user-sidebar .links li button i {
  width: 18px !important;
  flex-shrink: 0 !important;
  opacity: .7 !important;
  font-size: 13px !important;
  margin: 0 !important;
}

/* Divider inside sidebar (the hr between nav and settings links) */
.awh-user-sidebar .widget .links li[style*="border-top"],
.awh-user-sidebar .links li[style*="border-top"] {
  border-top: 1px solid #f0f0f0 !important;
  margin-top: 8px !important;
  padding-top: 8px !important;
}

/* Page background for all user dashboard pages */
.awh-user-sidebar + div,
.awh-dash-page,
.awh-cl-page,
.awh-budget-page,
.awh-wp-page {
  background: #f8f9fb;
}

/* ============================================================
   MOBILE SIGNUP CONVERSION OPTIMISATION
   Branch: mobile-signup-conversion-optimisation
   ============================================================ */

/* ── City / Category / Vendor signup block ── */
.awh-city-signup-block {
  border-radius: 20px;
  background: linear-gradient(135deg, #F4ECDC 0%, #f8bbd9 100%);
  border: 1px solid rgba(194, 24, 91, 0.15);
  padding: 0;
  overflow: hidden;
}
.awh-city-signup-block__inner {
  padding: 32px 28px;
  text-align: center;
}
.awh-city-signup-block__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F5132, #0A3A24);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.awh-city-signup-block__title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.awh-city-signup-block__desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 20px;
}
.awh-city-signup-block__cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0F5132, #0A3A24);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.awh-city-signup-block__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.36);
  color: #fff !important;
}
.awh-city-signup-block__micro {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ── Get Inspired / Planning Guides section ── */
.awh-inspiration-section {
  background: #f8f9fb;
  padding: 72px 0;
}
.awh-inspiration-section__heading {
  text-align: center;
  margin-bottom: 36px;
}
.awh-inspiration-section__badge {
  display: inline-block;
  background: #fff0f3;
  color: #0F5132;
  border: 1px solid #f7a8be;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.awh-inspiration-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1A1F1B;
  margin-bottom: 8px;
}
.awh-inspiration-section__desc {
  font-size: 15px;
  color: #6c757d;
  max-width: 520px;
  margin: 0 auto;
}
.awh-inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.awh-inspiration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4e7ec;
  text-decoration: none;
  color: #1a1a2e;
  transition: transform 0.15s, box-shadow 0.15s;
  gap: 10px;
}
.awh-inspiration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 31, 27,0.10);
  color: #1a1a2e;
  text-decoration: none;
}
.awh-inspiration-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.awh-inspiration-card--1 .awh-inspiration-card__icon { background: #F4ECDC; color: #0A3A24; }
.awh-inspiration-card--2 .awh-inspiration-card__icon { background: #f3e5f5; color: #6a1b9a; }
.awh-inspiration-card--3 .awh-inspiration-card__icon { background: #e8f5e9; color: #2e7d32; }
.awh-inspiration-card--4 .awh-inspiration-card__icon { background: #e3f2fd; color: #1565c0; }
.awh-inspiration-card--5 .awh-inspiration-card__icon { background: #fff3e0; color: #e65100; }
.awh-inspiration-card--6 .awh-inspiration-card__icon { background: #fff8e1; color: #f57f17; }
.awh-inspiration-card__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Sticky CTA — signup variant for guests ── */
.awh-sticky-signup {
  background: linear-gradient(135deg, #0F5132, #0A3A24) !important;
}

/* ── Mobile bottom nav — Plan button (heart) ── */
.awh-footer-plan-btn {
  background: linear-gradient(135deg, #0F5132, #0A3A24) !important;
}

/* ── Mobile menu signup item highlight ── */
.awh-menu-signup-item .mobile-menu-icon {
  background: linear-gradient(135deg, #0F5132, #0A3A24) !important;
  color: #fff !important;
}

/* ── Mobile-first responsive improvements ── */
@media (max-width: 767px) {
  /* Inspiration grid: 2 cols on mobile */
  .awh-inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .awh-inspiration-card {
    padding: 16px 10px;
  }
  .awh-inspiration-card__icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .awh-inspiration-card__label {
    font-size: 12px;
  }

  /* City signup block — tighter on mobile */
  .awh-city-signup-block__inner {
    padding: 24px 20px;
  }
  .awh-city-signup-block__cta {
    font-size: 14px;
    padding: 13px 22px;
    display: block;
    text-align: center;
  }

  /* Sticky CTA — wider tap target on mobile */
  .awh-quote-modal__sticky-btn {
    bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 14px;
    padding: 12px 20px;
  }

  /* Vendor cards on mobile — stack CTAs */
  .vendor-area .card .d-flex.flex-column.gap-1 {
    gap: 8px !important;
  }

  /* Touch target minimum */
  .btn-sm {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero search — hide date and guests on mobile to simplify */
  .hero-search-bar .hero-search-field:nth-child(3),
  .hero-search-bar .hero-search-field:nth-child(4) {
    display: none;
  }

  /* Homepage — tool cards stack nicely */
  .awh-free-tools__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Inspiration section tighter padding on mobile */
  .awh-inspiration-section {
    padding: 48px 0;
  }
}

@media (max-width: 430px) {
  /* Very small screens — single column inspiration */
  .awh-inspiration-grid {
    grid-template-columns: 1fr;
  }

  /* Reduce hero H1 bottom spacing on small phones */
  .hero-banner .container .text-center h1 {
    margin-bottom: 0.75rem !important;
  }
}

/* ── Image aspect ratio reservation to prevent CLS ── */
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    animation: none !important;
  }
  .awh-city-signup-block__cta,
  .awh-inspiration-card {
    transition: none !important;
  }
}

/* ============================================================
   PHASE 4 / 10 / 11 — continued mobile optimisation
   ============================================================ */

/* ── Phase 11: Mobile filter/sort bar ── */
.awh-mobile-filter-bar {
  align-items: center;
  gap: 8px;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--awh-border, #e4e7ec);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.awh-mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1.5px solid var(--awh-border, #e4e7ec);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
}
.awh-mobile-filter-btn:active {
  background: #f5f5f5;
}
.awh-filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary, #0F5132);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.awh-mobile-sort-select {
  flex: 1;
  min-width: 100px;
  max-width: 140px;
  border: 1.5px solid var(--awh-border, #e4e7ec);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  min-height: 40px;
  background: #fff;
  cursor: pointer;
}
.awh-mobile-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary, #0F5132);
  text-decoration: none;
  padding: 8px 4px;
  white-space: nowrap;
}

/* ── Active filter chips ── */
.awh-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.awh-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #F4ECDC;
  border: 1px solid rgba(194,24,91,.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #0A3A24;
}
.awh-filter-chip a {
  color: #0A3A24;
  text-decoration: none;
  font-weight: 700;
  margin-left: 2px;
  line-height: 1;
}
.awh-filter-chip a:hover {
  color: #880e4f;
}

/* ── Filter offcanvas (mobile) ── */

/* FIX 1: Force offcanvas + backdrop above ALL page stacking contexts
   (AOS transforms, newsletter position:relative, vendor card hovers all
   create stacking contexts that would otherwise sit above z-index 1040) */
.offcanvas-backdrop {
    z-index: 9990 !important;
}
#widgetOffcanvas.offcanvas,
#widgetOffcanvas.offcanvas-start {
    z-index: 9991 !important;
    width: 300px !important;
    max-width: 88vw;
}

/* FIX 2: Pagination sits below backdrop */
.pagination {
    position: relative;
    z-index: 1;
}

/* Panel header */
#widgetOffcanvas .offcanvas-header {
    background: #1A1F1B;
    padding: 14px 18px;
    border-bottom: none;
    flex-shrink: 0;
    min-height: 56px;
}
#widgetOffcanvas .offcanvas-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}
#widgetOffcanvas .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
}

/* Panel body — scroll handled by inline style on the element */
#widgetOffcanvas .offcanvas-body {
    padding: 14px 16px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Widgets */
#widgetOffcanvas .widget {
    background: #fff !important;
    border-radius: 10px !important;
    border: 1px solid #e8ecf0 !important;
    padding: 14px 16px !important;
    margin-bottom: 10px !important;
}
#widgetOffcanvas .widget .title {
    margin-bottom: 0;
}
#widgetOffcanvas .widget .accordion-button {
    padding: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1F1B;
    background: none !important;
    box-shadow: none !important;
    border: none;
}
#widgetOffcanvas .accordion-body {
    padding: 0 !important;
    margin-top: 10px !important;
}

/* FIX 3: Nuke theme radio-circle and replace with clean dot.
   The theme's .list-item.list-dropdown a::before has high specificity —
   override with !important on every conflicting property. */
#widgetOffcanvas .list-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}
#widgetOffcanvas .list-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
#widgetOffcanvas .list-item a,
#widgetOffcanvas .list-item .category-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
    font-size: 0.875rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    background: transparent !important;
    transition: background 0.15s !important;
    /* reset theme positioning that enables circles */
    position: static !important;
    line-height: 1.4 !important;
}
/* Remove ALL theme-injected pseudo-elements */
#widgetOffcanvas .list-item a::before,
#widgetOffcanvas .list-item a::after,
#widgetOffcanvas .list-item .category-toggle::before,
#widgetOffcanvas .list-item .category-toggle::after {
    content: none !important;
    display: none !important;
}
/* Our own clean dot via a data attribute isn't needed — use inline-flex span instead.
   For the existing markup (plain <a> tags) we inject a dot via a safe pseudo approach
   that wins specificity: */
#widgetOffcanvas .list-item > a::before,
#widgetOffcanvas .list-item > .category-toggle::before {
    content: '' !important;
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    border: 2px solid #9ca3af !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    position: static !important;
    margin: 0 !important;
}
#widgetOffcanvas .list-item a:hover,
#widgetOffcanvas .list-item .category-toggle:hover {
    background: #f3f4f6 !important;
    color: #1A1F1B !important;
}
#widgetOffcanvas .list-item a.active,
#widgetOffcanvas .list-item .category-toggle.active {
    background: #fff0f2 !important;
    color: #b5404a !important;
    font-weight: 600 !important;
}
#widgetOffcanvas .list-item > a.active::before,
#widgetOffcanvas .list-item > .category-toggle.active::before {
    background: #b5404a !important;
    border-color: #b5404a !important;
}

/* Inputs & selects */
#widgetOffcanvas .form-control,
#widgetOffcanvas .form-select {
    font-size: 0.875rem;
    padding: 8px 12px;
    border-radius: 8px;
}
#widgetOffcanvas label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}
#widgetOffcanvas .cta {
    padding-bottom: 8px !important;
}

/* =========================================== */
/* BLOG DETAIL TYPOGRAPHY                      */
/* =========================================== */

/* Page title — scaled for mobile, DM Sans for crisp rendering */
.blog-description .item-single h1.title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: clamp(22px, 5.5vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #1A1F1B !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
}

/* Content body wrapper */
.blog-description .item-single .content p.m-0 {
    margin: 0 !important;
}

/* All headings inside the blog content */
.blog-description .item-single .content h1,
.blog-description .item-single .content h2,
.blog-description .item-single .content h3,
.blog-description .item-single .content h4,
.blog-description .item-single .content h5,
.blog-description .item-single .content h6 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700 !important;
    color: #1A1F1B !important;
    line-height: 1.3 !important;
    margin-top: 2em !important;
    margin-bottom: 0.6em !important;
}

.blog-description .item-single .content h2 {
    font-size: clamp(18px, 4.5vw, 26px) !important;
}

.blog-description .item-single .content h3 {
    font-size: clamp(16px, 4vw, 22px) !important;
}

.blog-description .item-single .content h4 {
    font-size: clamp(15px, 3.5vw, 19px) !important;
}

/* Paragraphs — consistent body font, good line height and spacing */
.blog-description .item-single .content p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #374151 !important;
    margin-top: 0 !important;
    margin-bottom: 1.25em !important;
}

/* Lists */
.blog-description .item-single .content ul,
.blog-description .item-single .content ol {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #374151 !important;
    margin-bottom: 1.25em !important;
    padding-left: 1.5em !important;
}

.blog-description .item-single .content li {
    margin-bottom: 0.4em !important;
}

/* Bold / strong */
.blog-description .item-single .content strong,
.blog-description .item-single .content b {
    color: #1A1F1B !important;
    font-weight: 700 !important;
}

/* First heading after the page title — no top margin */
.blog-description .item-single .content > h2:first-child,
.blog-description .item-single .content > h3:first-child {
    margin-top: 0 !important;
}

/* ── Phase 10: Mobile signup registration page banner ── */
.awh-signup-mobile-banner {
  background: linear-gradient(135deg, #F4ECDC 0%, #f8bbd9 100%);
  border: 1px solid rgba(194,24,91,.15);
  border-radius: 14px;
  padding: 16px;
}
.awh-signup-mobile-banner__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.awh-signup-mobile-banner__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F5132, #0A3A24);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.awh-signup-mobile-banner__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2px;
}
.awh-signup-mobile-banner__free {
  font-size: 11px;
  color: #0A3A24;
  font-weight: 600;
  margin: 0;
}
.awh-signup-mobile-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.awh-signup-mobile-banner__grid span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
}
.awh-signup-mobile-banner__grid i {
  color: #0A3A24;
  width: 14px;
  flex-shrink: 0;
}

/* ── Phase 4: Guest save modal improvements ── */
.awh-guest-save-btn {
  touch-action: manipulation;
}

/* ── Service listing CTAs: ensure View Supplier is not cut off on mobile ── */
.awh-listings-grid .product-details .btn-sm {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Listing signup prompt: slightly smaller padding on very small screens ── */
@media (max-width: 390px) {
  .awh-city-signup-block--listing .awh-city-signup-block__inner {
    padding: 20px 16px;
  }
  .awh-mobile-filter-bar {
    gap: 6px;
  }
  .awh-mobile-sort-select {
    max-width: 110px;
  }
}

/* ── Homepage blog cards (real posts, 3-col grid) ── */
.awh-blog-grid {
  grid-template-columns: repeat(3, 1fr);
}
.awh-blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4e7ec;
  text-decoration: none;
  color: #1a1a2e;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.awh-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 31, 27,0.10);
  color: #1a1a2e;
  text-decoration: none;
}
.awh-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.awh-blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #F4ECDC, #f3e5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0F5132;
  opacity: 0.5;
}
.awh-blog-card__body {
  padding: 14px 16px;
  flex: 1;
}
.awh-blog-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767px) {
  .awh-blog-grid {
    grid-template-columns: 1fr;
  }
  .awh-blog-card__title {
    font-size: 13px;
  }
}

/* ── Browse by city strip ── */
.awh-city-strip {
  padding: 72px 0 80px;
  background: #f8f4f0;
  position: relative;
  overflow: hidden;
}
.awh-city-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(15,81,50,.06) 0%, transparent 70%);
  pointer-events: none;
}
.awh-city-strip__heading {
  text-align: center;
  margin-bottom: 40px;
}
.awh-city-strip__subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0F5132;
  margin-bottom: 10px;
}
.awh-city-strip__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1A1F1B;
  margin: 0 0 12px;
  line-height: 1.2;
}
.awh-city-strip__desc {
  font-size: 15px;
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.awh-city-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.awh-city-strip__chips--tier2 {
  gap: 10px;
}
.awh-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.awh-city-chip__icon {
  font-size: .75em;
  opacity: .85;
}
/* Tier 1 — filled navy */
.awh-city-chip--primary {
  background: #1A1F1B;
  color: #fff;
  font-size: 14px;
  padding: 11px 22px;
  box-shadow: 0 2px 8px rgba(15,26,46,.18);
}
.awh-city-chip--primary:hover {
  background: #1a2d4a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,26,46,.28);
}
/* Spotlight row container */
.awh-city-strip__chips--spotlight {
  gap: 16px;
  margin-bottom: 16px;
}
/* Spotlight chips — London, Birmingham, Manchester */
.awh-city-chip--spotlight {
  background: linear-gradient(135deg, #0F5132, #0A3A24);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  box-shadow: 0 4px 18px rgba(15,81,50,.30);
  letter-spacing: .01em;
}
.awh-city-chip--spotlight:hover {
  background: linear-gradient(135deg, #0A3A24, #ad1457);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,81,50,.42);
}
.awh-city-chip--spotlight .awh-city-chip__icon {
  opacity: 1;
  font-size: .8em;
}
/* Tier 2 — outlined */
.awh-city-chip--secondary {
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border: 1.5px solid #d1d5db;
  box-shadow: 0 1px 4px rgba(26, 31, 27,.06);
}
.awh-city-chip--secondary:hover {
  background: #1A1F1B;
  color: #fff;
  border-color: #1A1F1B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,26,46,.2);
}
.awh-city-chip--secondary .awh-city-chip__icon {
  color: #0F5132;
  transition: color .18s;
}
.awh-city-chip--secondary:hover .awh-city-chip__icon {
  color: #fff;
}
@media (max-width: 575px) {
  .awh-city-strip {
    padding: 52px 0 60px;
  }
  .awh-city-chip--spotlight {
    font-size: 14px;
    padding: 12px 24px;
  }
  .awh-city-chip--primary {
    font-size: 13px;
    padding: 10px 18px;
  }
  .awh-city-chip--secondary {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ── Filter Modal (mobile bottom sheet) ─────────────────────── */
.awh-filter-modal-dialog {
  margin: 0;
  max-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}
.awh-filter-modal {
  border-radius: 20px 20px 0 0 !important;
  border: none;
  box-shadow: 0 -8px 40px rgba(26, 31, 27,.18);
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
}
.awh-filter-modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
}
@media (min-width: 576px) {
  .awh-filter-modal-dialog {
    margin: 1.75rem auto;
    max-width: 480px;
    min-height: auto;
    align-items: center;
  }
  .awh-filter-modal {
    border-radius: 16px !important;
    max-height: 85vh;
  }
}
.awh-filter-section__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--awh-text-secondary, #6b7280);
  margin-bottom: 10px;
}
.awh-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.awh-filter-pill {
  padding: 7px 15px;
  border-radius: 50px;
  border: 1.5px solid #d1d5db;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  line-height: 1.4;
  white-space: nowrap;
}
.awh-filter-pill:hover {
  border-color: var(--awh-primary, #0F5132);
  color: var(--awh-primary, #0F5132);
}
.awh-filter-pill.active {
  background: var(--awh-primary, #0F5132);
  border-color: var(--awh-primary, #0F5132);
  color: #fff;
}
.awh-filter-reset-btn {
  border-radius: 50px !important;
  font-weight: 600;
}
#filterModalApply {
  border-radius: 50px !important;
  font-weight: 600;
}

/* =====================================================================
   DESIGN.md Components — emerald + champagne + ivory
   Utility classes available to Blade templates for consistent styling.
   Prefix `.awh-` to avoid Bootstrap collisions.
   ===================================================================== */

/* --- Buttons (pill primary CTA is the brand signature) --- */
.awh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.awh-btn:focus-visible {
  outline: 2px solid #0F5132;
  outline-offset: 2px;
}
.awh-btn--primary {
  background: #0F5132;
  color: #FFFDF8;
}
.awh-btn--primary:hover {
  background: #0A3A24;
  color: #FFFDF8;
}
.awh-btn--primary:active {
  background: #1A1F1B;
  color: #FFFDF8;
}
.awh-btn--secondary {
  background: #FFFDF8;
  color: #0F5132;
  border-color: #0F5132;
}
.awh-btn--secondary:hover {
  background: #D9E5DF;
  color: #0A3A24;
  border-color: #0A3A24;
}
.awh-btn--cta-champagne {
  background: #C9A96A;
  color: #1A1F1B;
}
.awh-btn--cta-champagne:hover {
  background: #5C4520;
  color: #FFFDF8;
}
.awh-btn--ghost {
  background: transparent;
  color: #1A1F1B;
  border-radius: 12px;
  padding: 12px 20px;
}
.awh-btn--ghost:hover {
  background: #F4F0E8;
  color: #0F5132;
}
.awh-btn--sm { padding: 10px 18px; font-size: 13px; }
.awh-btn--lg { padding: 16px 32px; font-size: 15px; }
.awh-btn--block { display: flex; width: 100%; }

/* --- Badges --- */
.awh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.awh-badge--featured { background: #C9A96A; color: #1A1F1B; }
.awh-badge--trust    { background: #D9E5DF; color: #0A3A24; }
.awh-badge--neutral  { background: #F4F0E8; color: #5C6360; }
.awh-badge--error    { background: #F9DEDC; color: #410E0B; }
.awh-badge--inverse  { background: #1A1F1B; color: #FFFDF8; }

/* --- Cards (16px radius signature; soft shadow on ivory) --- */
.awh-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid transparent;
  box-shadow: 0 6px 20px rgba(26, 31, 27, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.awh-card:hover {
  box-shadow: 0 12px 32px rgba(26, 31, 27, 0.08);
}
.awh-card--flat { box-shadow: none; border-color: #E5DFD2; }
.awh-card--flat:hover { box-shadow: 0 6px 20px rgba(26, 31, 27, 0.06); }
.awh-card--feature { background: #D9E5DF; color: #0A3A24; box-shadow: none; }
.awh-card--tinted { background: #F7F3EB; box-shadow: none; }
.awh-card--inverse { background: #1A1F1B; color: #FFFDF8; box-shadow: none; }

/* Card media area — supplier 3:2, category 1:1, city 3:4 */
.awh-card__media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #F4F0E8;
  margin-bottom: 16px;
}
.awh-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.awh-card__media--3-2 { aspect-ratio: 3 / 2; }
.awh-card__media--1-1 { aspect-ratio: 1 / 1; }
.awh-card__media--3-4 { aspect-ratio: 3 / 4; }
.awh-card__media--16-9 { aspect-ratio: 16 / 9; }

.awh-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1A1F1B;
  margin: 0 0 4px;
}
.awh-card__meta {
  font-size: 14px;
  color: #5C6360;
  line-height: 1.5;
}
.awh-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

/* --- Eyebrow / section labels --- */
.awh-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F5132;
  margin-bottom: 12px;
}

/* --- Section spacing --- */
.awh-section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.awh-section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .awh-section { padding-top: 64px; padding-bottom: 64px; }
  .awh-section--tight { padding-top: 48px; padding-bottom: 48px; }
}
.awh-section--ivory  { background: #FFFDF8; }
.awh-section--cream  { background: #F4F0E8; }
.awh-section--sand   { background: #F7F3EB; }
.awh-section--ink    { background: #1A1F1B; color: #FFFDF8; }
.awh-section--ink h1, .awh-section--ink h2, .awh-section--ink h3 { color: #FFFDF8; }
.awh-section--emerald-wash { background: #D9E5DF; color: #0A3A24; }

/* --- Trust strip --- */
.awh-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5C6360;
}
.awh-trust-row__item { display: inline-flex; align-items: center; gap: 8px; }

/* --- Search bar (pill container) --- */
.awh-search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5DFD2;
  border-radius: 9999px;
  padding: 8px;
  box-shadow: 0 6px 20px rgba(26, 31, 27, 0.06);
  gap: 4px;
}
.awh-search__field {
  flex: 1 1 0;
  padding: 12px 20px;
  border: 0;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1A1F1B;
  border-radius: 9999px;
}
.awh-search__field:focus {
  outline: none;
  background: #FBF8F2;
}
.awh-search__divider {
  width: 1px;
  align-self: stretch;
  background: #E5DFD2;
  margin: 4px 0;
}
.awh-search__submit {
  padding: 12px 24px;
  border-radius: 9999px;
  border: 0;
  background: #0F5132;
  color: #FFFDF8;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.awh-search__submit:hover { background: #0A3A24; }
@media (max-width: 767px) {
  .awh-search { flex-direction: column; border-radius: 24px; padding: 12px; }
  .awh-search__divider { width: 100%; height: 1px; margin: 4px 0; }
  .awh-search__submit { width: 100%; padding: 14px 24px; justify-content: center; }
}

/* --- Forms --- */
.awh-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.awh-field__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A1F1B;
  letter-spacing: 0.01em;
}
.awh-field__label .awh-required {
  color: #C9A96A;
  margin-left: 2px;
}
.awh-field__input,
.awh-field__textarea,
.awh-field__select {
  width: 100%;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #E5DFD2;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1A1F1B;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.awh-field__input:focus,
.awh-field__textarea:focus,
.awh-field__select:focus {
  outline: none;
  border-color: #0F5132;
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.12);
}
.awh-field__input.is-invalid,
.awh-field__textarea.is-invalid,
.awh-field__select.is-invalid,
.awh-field__input[aria-invalid="true"] {
  border-color: #B3261E;
}
.awh-field__help { font-size: 13px; color: #5C6360; }
.awh-field__error { font-size: 13px; color: #B3261E; line-height: 1.5; display: flex; gap: 6px; align-items: flex-start; }

/* --- Alerts --- */
.awh-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.awh-alert--success { background: #D9E5DF; color: #0A3A24; }
.awh-alert--error   { background: #F9DEDC; color: #410E0B; }
.awh-alert--warning { background: #F4ECDC; color: #5C4520; }
.awh-alert--info    { background: #FBF8F2; color: #1F4E5C; border: 1px solid #E5DFD2; }

/* --- Empty state --- */
.awh-empty {
  text-align: center;
  padding: 64px 24px;
  background: #FBF8F2;
  border-radius: 16px;
  border: 1px solid #EFEAE0;
}
.awh-empty__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #1A1F1B;
  margin: 0 0 8px;
}
.awh-empty__body {
  font-size: 15px;
  color: #5C6360;
  margin: 0 0 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Mobile sticky CTA bar (frontend-only; host page provides hrefs) --- */
.awh-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 16px;
  background: #FFFDF8;
  border-top: 1px solid #E5DFD2;
  box-shadow: 0 -6px 20px rgba(26, 31, 27, 0.06);
  z-index: 1040;
  gap: 8px;
}
.awh-sticky-cta > .awh-btn { flex: 1 1 0; }
@media (max-width: 767px) {
  .awh-sticky-cta { display: flex; }
  body.awh-site.has-sticky-cta { padding-bottom: 88px; }
}

/* --- Pagination polish (preserves existing pagination logic) --- */
.awh-site .pagination .page-link {
  border-radius: 12px;
  border: 1px solid #E5DFD2;
  color: #1A1F1B;
  padding: 8px 14px;
  margin: 0 2px;
  font-weight: 500;
}
.awh-site .pagination .page-item.active .page-link {
  background: #0F5132;
  border-color: #0F5132;
  color: #FFFDF8;
}
.awh-site .pagination .page-link:hover {
  background: #F4F0E8;
  color: #0F5132;
  border-color: #0F5132;
}

/* --- Skip link (a11y) --- */
.awh-skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  background: #1A1F1B;
  color: #FFFDF8;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  z-index: 9999;
}
.awh-skip-link:focus {
  left: 16px;
  outline: 2px solid #C9A96A;
  outline-offset: 2px;
}

/* --- Heading typography refinements (DESIGN.md scale) --- */
.awh-site h1 { font-weight: 600; letter-spacing: -0.01em; }
.awh-site h2 { font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.awh-site h3 { font-weight: 600; line-height: 1.2; }
.awh-site .awh-display {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.awh-site .awh-lead {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px;
  line-height: 1.6;
  color: #5C6360;
}

/* Container width matches DESIGN.md (1280px) */
@media (min-width: 1400px) {
  .awh-site .container,
  .awh-site .container-lg,
  .awh-site .container-md,
  .awh-site .container-sm,
  .awh-site .container-xl,
  .awh-site .container-xxl {
    max-width: 1280px;
  }
}

/* =====================================================================
   DESIGN.md A11y Safety Patch (Phase 5)
   Ensures :focus-visible always shows an emerald ring for keyboard users
   regardless of local outline:none rules. Bumps mobile tap targets.
   ===================================================================== */

/* Universal focus-visible — wins via specificity boost + late position */
.awh-site *:focus-visible {
  outline: 2px solid #0F5132 !important;
  outline-offset: 2px;
  border-radius: 6px;
}
.awh-site .awh-skip-link:focus-visible {
  outline: 2px solid #C9A96A !important;
  outline-offset: 2px;
}

/* Default link focus inside the body content (not nav, which has its own) */
.awh-site a:focus-visible {
  outline-offset: 3px;
}

/* Mobile: bump small icon buttons to 44x44 minimum tap target */
@media (max-width: 767px) {
  .awh-site .btn-icon,
  .awh-site .product-img .wishlist-active,
  .awh-site .product-img form button[type="submit"] {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Reduce motion preference — scoped off Swiper internals so JS-driven slider
   navigation (which depends on transition end events) keeps working. */
@media (prefers-reduced-motion: reduce) {
  .awh-site *:not(.swiper):not(.swiper-wrapper):not(.swiper-slide):not(.swiper-pagination):not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next),
  .awh-site *::before,
  .awh-site *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ensure error text has min 14px size (DESIGN.md a11y rule) */
.awh-site .invalid-feedback,
.awh-site .alert-danger,
.awh-site .form-error {
  font-size: 14px;
  line-height: 1.5;
}

/* Stronger contrast on default Bootstrap text-muted (it's #6c757d → 4.5:1 borderline) */
.awh-site .text-muted {
  color: #5C6360 !important;
}

/* ============================================================
 * DESIGN.md component classes — added to materialise the spec.
 * Reference DESIGN.md > Components for semantics. Tokens flow
 * from public/assets/frontend/css/design-tokens.css (auto-gen).
 * ============================================================ */

/* Cards — spec §Components.Cards */
.awh-card-feature {
  background: var(--awh-color-primary-container, #D9E5DF);
  color: var(--awh-color-on-primary-container, #0A3A24);
  border-radius: var(--awh-radius-lg, 16px);
  padding: 24px;
}
.awh-card-city {
  background: var(--awh-color-surface-container, #F7F3EB);
  color: var(--awh-color-on-surface, #1A1F1B);
  border-radius: var(--awh-radius-lg, 16px);
  padding: 24px;
}
.awh-card-category {
  background: var(--awh-color-surface-container-low, #FBF8F2);
  color: var(--awh-color-on-surface, #1A1F1B);
  border-radius: var(--awh-radius-lg, 16px);
  padding: 24px;
  box-shadow: var(--awh-shadow-1);
  transition: box-shadow .2s ease, transform .2s ease;
}
.awh-card-category:hover {
  box-shadow: var(--awh-shadow-2);
  transform: translateY(-2px);
}

/* Badges — spec §Components.Badges */
.awh-badge-trust {
  display: inline-block;
  background: var(--awh-color-primary-container, #D9E5DF);
  color: var(--awh-color-on-primary-container, #0A3A24);
  font-size: var(--type-label-sm-size, 12px);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 4px 10px;
}
.awh-badge-featured {
  display: inline-block;
  background: var(--awh-color-tertiary, #C9A96A);
  color: var(--awh-color-on-tertiary, #1A1F1B);
  font-size: var(--type-label-sm-size, 12px);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 4px 10px;
}
.awh-badge-neutral {
  display: inline-block;
  background: var(--awh-color-surface-container-high, #F4F0E8);
  color: var(--awh-color-on-surface-variant, #5C6360);
  font-size: var(--type-label-sm-size, 12px);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 4px 10px;
}

/* Alerts — spec §Components.Alerts */
.awh-alert-info {
  background: var(--awh-color-surface-container-low, #FBF8F2);
  color: var(--awh-color-info, #1F4E5C);
  border-radius: var(--awh-radius-md, 12px);
  padding: 12px 16px;
  font-size: var(--type-body-sm-size, 14px);
}
.awh-toast-error {
  background: var(--awh-color-error, #B3261E);
  color: var(--awh-color-on-error, #FFFFFF);
  border-radius: var(--awh-radius-md, 12px);
  padding: 12px 16px;
  font-size: var(--type-body-sm-size, 14px);
  box-shadow: var(--awh-shadow-3);
}

/* Nav link — spec §Components.Navigation */
.awh-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--awh-color-surface, #FFFDF8);
  color: var(--awh-color-on-surface, #1A1F1B);
  font-size: var(--type-label-lg-size, 14px);
  font-weight: 600;
  border-radius: 9999px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.awh-nav-link:hover,
.awh-nav-link.is-active {
  background: var(--awh-color-surface-container-high, #F4F0E8);
  color: var(--awh-color-primary, #0F5132);
}

/* Surfaces — spec §Components.Surfaces */
.awh-surface-raised {
  background: var(--awh-color-surface-container-lowest, #FFFFFF);
  color: var(--awh-color-on-surface, #1A1F1B);
  border-radius: var(--awh-radius-lg, 16px);
  padding: 24px;
  box-shadow: var(--awh-shadow-2);
}
.awh-surface-pressed {
  background: var(--awh-color-surface-container-highest, #EFEAE0);
  color: var(--awh-color-on-surface, #1A1F1B);
  border-radius: var(--awh-radius-md, 12px);
  padding: 12px 16px;
}

/* Inverse — spec §Components.Banner / Link-on-inverse */
.awh-banner-inverse {
  background: var(--awh-color-inverse-surface, #1A1F1B);
  color: var(--awh-color-inverse-on-surface, #FFFDF8);
  border-radius: var(--awh-radius-xl, 24px);
  padding: 48px 32px;
}
.awh-link-on-inverse {
  color: var(--awh-color-inverse-primary, #A8C9B7);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.awh-link-on-inverse:hover { color: var(--awh-color-on-primary, #FFFDF8); }

/* Dividers — spec §Components.Divider */
.awh-divider-subtle {
  border: 0;
  border-top: 1px solid var(--awh-color-outline-variant, #EFEAE0);
  margin: 16px 0;
}

/* Hero surface — spec §Components.Hero-surface */
.awh-hero-surface {
  background: var(--awh-color-surface-dim, #F4F0E8);
  color: var(--awh-color-on-surface, #1A1F1B);
  border-radius: var(--awh-radius-xl, 24px);
  padding: 64px;
}
@media (max-width: 768px) {
  .awh-hero-surface { padding: 48px 24px; }
}

/* Footer section — spec §Components.Footer-section */
.awh-footer-section {
  background: var(--awh-color-secondary-container, #2C332E);
  color: var(--awh-color-on-secondary-container, #E8EAE9);
  border-radius: var(--awh-radius-lg, 16px);
  padding: 24px;
}

/* ============================================================
 * User-area sidebar drawer — global, applies to every /user/*
 * page that includes frontend.user.side-navbar. Desktop renders
 * the nav as the inline left rail; mobile (<992px) collapses to
 * an off-canvas drawer triggered by the "Menu" pill.
 * ============================================================ */

/* Hide the mobile Menu pill, drawer toggle/overlay/close on
   desktop. Sidebar renders as a normal block. */
.awh-site .awh-user-mobile-bar,
.awh-site .awh-user-drawer__overlay,
.awh-site .awh-user-drawer__close { display: none; }
.awh-site .awh-user-drawer__toggle { position: absolute; opacity: 0; pointer-events: none; }

@media (max-width: 991px) {
  /* Show the Menu pill at the include site (top of /user/* pages) */
  .awh-site .awh-user-mobile-bar {
    display: flex; align-items: center; gap: 12px;
    margin: 0 0 16px;
  }
  .awh-site .awh-user-menu-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--awh-color-surface-bright, #fff);
    color: var(--awh-color-on-surface, #1A1F1B);
    border: 1px solid var(--awh-color-outline, #E5DFD2);
    border-radius: 9999px;
    padding: 10px 16px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--awh-shadow-1, 0 1px 2px rgba(26,31,27,.04));
    transition: background .15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .awh-site .awh-user-menu-pill:active,
  .awh-site .awh-user-menu-pill:focus-visible {
    background: var(--awh-color-surface-container-high, #F4F0E8);
    outline: 2px solid var(--awh-color-primary, #0F5132);
    outline-offset: 2px;
  }

  /* Sidebar = off-canvas drawer */
  .awh-site .awh-user-sidebar.awh-user-drawer {
    position: fixed !important;
    top: 0 !important; left: 0 !important; bottom: 0 !important;
    width: min(86vw, 320px) !important;
    max-width: 320px !important;
    margin: 0 !important;
    z-index: 1050;
    background: var(--awh-color-surface-bright, #fff);
    box-shadow: 4px 0 24px rgba(26, 31, 27, .18);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.32, .72, 0, 1);
    padding: 56px 16px 24px;
  }
  .awh-site .awh-user-drawer__close {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 9999px;
    background: var(--awh-color-surface-container-high, #F4F0E8);
    color: var(--awh-color-on-surface, #1A1F1B);
    cursor: pointer;
    z-index: 1; /* above the .widget content */
  }
  .awh-site .awh-user-drawer__overlay {
    display: block; position: fixed; inset: 0;
    background: rgba(26, 31, 27, .45);
    z-index: 1049;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
  }
  .awh-site .awh-user-drawer__toggle:checked ~ .awh-user-drawer__overlay { opacity: 1; pointer-events: auto; }
  .awh-site .awh-user-drawer__toggle:checked ~ .awh-user-sidebar.awh-user-drawer { transform: translateX(0); }

  /* Failsafe: any inline sidebar instance that is NOT the drawer
     (legacy / stray copy / wrapper col with .widget-area) is hidden. */
  .awh-site .awh-user-sidebar:not(.awh-user-drawer) {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .awh-site .awh-user-sidebar.awh-user-drawer,
  .awh-site .awh-user-drawer__overlay { transition: none; }
}

/* ============================================================
 * User-area v2 card system — global, opt-in via .awh-user--v2.
 * Lifts the visual treatments from the dashboard v2 redesign so
 * other /user/* pages can adopt them by adding one wrapper class.
 *
 * Pages opt in by adding .awh-user--v2 to their main column (or
 * page wrapper) and using these generic class names:
 *   .awh-card             generic stat card (16px radius, hairline,
 *                         ink shadow, hover lift on <a>)
 *   .awh-cards            grid of stat cards (2-col on <768px)
 *   .awh-panel            framed panel (16px radius)
 *   .awh-row-card         tappable row card (icon + body + footer)
 *     __icon                primary-container icon bubble
 *     __title  __desc       text body
 *     __footer              right-aligned footer (gets chevron on mobile)
 *
 * Dashboard-specific treatments (sticky 3-CTA bar, back-to-top
 * FAB, hero emerald-gradient header) intentionally NOT included
 * — they live in dashboard.blade.php where they belong.
 *
 * Token references fall back to literal hex if design-tokens.css
 * is missing.
 * ============================================================ */

/* Visual treatments — apply at every viewport */
.awh-site .awh-user--v2 .awh-card {
  min-height: 96px;
  padding: 18px 16px;
  border-radius: var(--awh-radius-lg, 16px);
  border: 1px solid var(--awh-color-outline, #E5DFD2);
  background: var(--awh-color-surface-bright, #fff);
  box-shadow: var(--awh-shadow-1, 0 1px 2px rgba(26,31,27,.04));
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.awh-site .awh-user--v2 a.awh-card:hover,
.awh-site a.awh-user--v2 .awh-card:hover {
  box-shadow: var(--awh-shadow-2, 0 6px 20px rgba(26,31,27,.06));
  transform: translateY(-2px);
}

.awh-site .awh-user--v2 .awh-panel {
  border-radius: var(--awh-radius-lg, 16px);
}

.awh-site .awh-user--v2 .awh-row-card {
  border-radius: var(--awh-radius-lg, 16px);
  border: 1px solid var(--awh-color-outline, #E5DFD2);
  background: var(--awh-color-surface-bright, #fff);
  box-shadow: var(--awh-shadow-1, 0 1px 2px rgba(26,31,27,.04));
  transition: box-shadow .15s ease, transform .15s ease;
}
.awh-site .awh-user--v2 .awh-row-card:hover {
  box-shadow: var(--awh-shadow-2, 0 6px 20px rgba(26,31,27,.06));
  transform: translateY(-2px);
}
.awh-site .awh-user--v2 .awh-row-card__icon {
  background: var(--awh-color-primary-container, #D9E5DF);
  color: var(--awh-color-on-primary-container, #0A3A24);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Phone (<768px): row layout for tappable cards, 2-col stat grid */
@media (max-width: 767px) {
  .awh-site .awh-user--v2 .awh-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .awh-site .awh-user--v2 .awh-card { padding: 16px 14px; }

  .awh-site .awh-user--v2 .awh-row-card {
    flex-direction: row !important; align-items: center;
    min-height: 88px; padding: 14px 16px;
    gap: 14px;
  }
  .awh-site .awh-user--v2 .awh-row-card:active {
    transform: scale(.99);
    box-shadow: var(--awh-shadow-2, 0 6px 20px rgba(26,31,27,.06));
  }
  .awh-site .awh-user--v2 .awh-row-card__icon {
    width: 44px; height: 44px; flex-shrink: 0; margin: 0;
  }
  .awh-site .awh-user--v2 .awh-row-card__title {
    font-size: 15px; margin: 0 0 2px; flex: 1 1 auto;
  }
  .awh-site .awh-user--v2 .awh-row-card__desc {
    font-size: 12px; color: var(--awh-color-on-surface-variant, #5C6360);
    margin: 0; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  }
  .awh-site .awh-user--v2 .awh-row-card__footer {
    margin: 0 0 0 auto; flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .awh-site .awh-user--v2 .awh-row-card__footer::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900; font-size: 12px;
    color: var(--awh-color-on-surface-variant, #5C6360);
    margin-left: 6px;
  }
}

@media (max-width: 480px) {
  .awh-site .awh-user--v2 .awh-row-card { padding: 12px 14px; }
  .awh-site .awh-user--v2 .awh-row-card__title { font-size: 14px; }
  .awh-site .awh-user--v2 .awh-row-card__footer { font-size: 11px; }
}
