:root {
            --brand-primary: #00a699;
            --brand-secondary: #2e3192;
            --brand-accent: #ff9900;
            --bg-page: #ffffff;
            --surface: #ffffff;
            --text-main: #1a1a1a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --container-width: 1240px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Public Sans', sans-serif;
            background-color: var(--bg-page);
            color: var(--text-main);
            line-height: 1.5;
        }

        .step-dot.active {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 166, 153, 0.2);
        }

        .step-dot.completed {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
        }

        .inner-content {
            max-width: var(--container-width);
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        .requirement-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 32px;
            margin-bottom: 48px;
        }

        .counter-box {
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 24px;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
        }

        .counter-label {
            font-size: 11px;
            font-weight: 800;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .counter-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0 12px;
        }

        .counter-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid #f1f5f9;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #94a3b8;
            font-size: 16px;
            transition: all 0.2s;
        }

        .counter-btn:hover {
            border-color: var(--brand-primary);
            color: var(--brand-primary);
            background: #f0fdfa;
        }

        .counter-value {
            font-size: 36px;
            font-weight: 900;
            color: #0f172a;
            min-width: 40px;
            text-align: center;
        }

        .expertise-label {
            font-size: 11px;
            font-weight: 900;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            display: block;
        }

        .top-utility {
            background: var(--brand-secondary);
            color: white;
            height: 36px;
            display: flex;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
        }

        .top-utility-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        header {
            background: white;
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-flex {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 32px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 24px;
            color: var(--brand-primary);
            cursor: pointer;
            text-decoration: none;
        }

        .logo span {
            color: var(--brand-secondary);
        }

        .site-logo {
            display: inline-flex;
            align-items: center;
            gap: 0;
            color: inherit;
            --logo-blue: #2d769a;
            --logo-orange: #e9782d;
            --logo-gray: #8b9199;
        }

        .site-logo .logo-box {
            display: none;
        }

        .search-container {
            position: relative;
            display: flex;
            width: 100%;
        }

        .search-input {
            flex: 1;
            height: 42px;
            border: 2px solid var(--brand-primary);
            border-right: none;
            border-radius: 4px 0 0 4px;
            padding: 0 16px;
            font-size: 14px;
            outline: none;
        }

        .search-btn {
            width: 100px;
            background: var(--brand-primary);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
        }

        /* Search Suggestions */
        .suggestions-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: calc(100% - 100px);
            /* Match input width */
            background: white;
            border: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            max-height: 400px;
            overflow-y: auto;
        }

        .suggestion-item {
            padding: 12px 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s;
            border-bottom: 1px solid #f8fafc;
        }

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

        .suggestion-item:hover,
        .suggestion-item.selected {
            background: #f1f5f9;
        }

        .suggestion-img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            background: #f8fafc;
        }

        .suggestion-info {
            flex: 1;
        }

        .suggestion-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-main);
            display: block;
        }

        .suggestion-meta {
            font-size: 11px;
            color: #64748b;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-main);
            font-size: 12px;
            gap: 2px;
            cursor: pointer;
            position: relative;
        }

        .action-item i {
            font-size: 18px;
            color: var(--brand-secondary);
        }

        .cart-tag {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--brand-accent);
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        .main-nav {
            background: white;
            border-bottom: 1px solid var(--border);
        }

        .nav-flex {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            padding: 12px 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-primary);
            border-bottom-color: var(--brand-primary);
        }

        .layout-grid {
            margin: 24px auto;
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 24px;
        }

        .sidebar {
            background: white;
            border-radius: var(--radius-md);
            padding: 16px;
            border: 1px solid var(--border);
            height: fit-content;
        }

        .sidebar-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-cat-chips-container {
            display: none;
        }

        .cat-list {
            list-style: none;
        }

        .cat-item {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 13px;
            color: var(--text-muted);
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            justify-content: space-between;
        }

        .cat-item:hover {
            color: var(--brand-primary);
            padding-left: 4px;
        }

        .hero-banner {
            background: linear-gradient(135deg, #2e3192 0%, #00a699 100%);
            border-radius: var(--radius-md);
            padding: 32px;
            color: white;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .hero-text p {
            font-size: 14px;
            opacity: 0.9;
        }

        .post-req-btn {
            background: var(--brand-accent);
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
        }

        .p-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .p-card:hover {
            border-color: var(--brand-primary);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .p-img-box {
            position: relative;
            background: #f8fafc;
            height: 110px;
            width: 100%;
            overflow: hidden;
        }

        .p-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Using contain for ultra-compact items to avoid cropping */
            padding: 8px;
            /* Breathing room for product image in small box */
            transition: transform 0.4s;
        }

        .p-info {
            padding: 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .p-category {
            font-size: 8px;
            font-weight: 800;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }

        .p-name {
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-secondary);
            margin-bottom: 4px;
            height: 32px;
            /* Fixed height for 2 lines to maintain symmetry */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
            line-height: 1.4;
        }

        /* --- Service Wizard Target Look (Image 2) - Compact --- */
        .service-wizard-container {
            background: white;
            border-radius: 24px;
            padding: 28px;
            max-width: var(--container-width);
            margin: 0 auto;
            box-shadow: 0 20px 46px -34px rgba(15, 23, 42, 0.28);
            border: 1px solid #e2e8f0;
        }

        .service-wizard-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .service-wizard-subcopy,
        .service-step-copy {
            color: #64748b;
            line-height: 1.6;
            font-size: 15px;
        }

        .service-quick-note {
            margin: -10px 0 22px;
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.45;
        }

        .step-progress-wrapper {
            margin-bottom: 28px;
            position: relative;
            padding: 0 24px;
        }

        .step-progress {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .step-progress::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: #f1f5f9;
            z-index: 1;
            transform: translateY(-50%);
        }

        .step-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: white;
            border: 2px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: #94a3b8;
            position: relative;
            z-index: 2;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-dot.active {
            background: var(--brand-secondary);
            border-color: var(--brand-secondary);
            color: white;
            box-shadow: 0 4px 12px rgba(46, 49, 146, 0.2);
        }

        .step-dot.completed {
            background: var(--brand-secondary);
            border-color: var(--brand-secondary);
            color: white;
        }

        .wizard-center-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .wizard-title-main {
            font-size: 24px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }

        .wizard-subtitle-sub {
            font-size: 11px;
            font-weight: 800;
            color: #94a3b8;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .professional-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
            gap: 14px !important;
            margin-bottom: 16px !important;
        }

        .prof-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            padding: 16px 10px !important;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px !important;
            min-height: 126px;
            box-shadow: 0 10px 20px -24px rgba(15, 23, 42, 0.6);
        }

        .counter-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .prof-card:hover {
            transform: translateY(-4px);
            border-color: var(--brand-primary);
        }

        .prof-card.active {
            border-color: var(--brand-primary);
            background: #f0fdfa;
            box-shadow: 0 16px 30px -24px rgba(20, 184, 166, 0.8);
        }

        .prof-icon-box {
            width: 52px !important;
            height: 52px !important;
            border-radius: 14px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .prof-name {
            font-size: 12px;
            font-weight: 900;
            color: #0f172a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.35;
        }

        .wizard-action-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-wizard-back-text {
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s;
        }

        .btn-wizard-back-text:hover {
            color: #475569;
        }

        .btn-wizard-next-premium {
            background: #0f172a;
            color: white;
            border: none;
            padding: 0 32px;
            height: 54px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 900;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
        }

        .btn-wizard-next-premium:hover {
            background: #1e293b;
            transform: translateY(-2px);
        }

        .btn-wizard-back-text i {
            font-size: 14px;
            margin-right: 4px;
        }

        .expertise-selector {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 12px;
        }

        .exp-option {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .exp-option:hover {
            border-color: #cbd5e1;
        }

        .exp-option.active {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 166, 153, 0.15);
        }

        .service-step-labels {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 12px;
            font-size: 11px;
            font-weight: 800;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            text-align: center;
        }

        .service-step-block {
            min-height: 0;
        }
        #service-step-1 .wizard-center-header {
            display: none;
        }

        .service-selected-strip,
        .service-request-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            border-radius: 18px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .service-selected-label,
        .service-request-summary span {
            display: block;
            font-size: 11px;
            font-weight: 900;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
        }

        .service-selected-strip strong,
        .service-request-summary strong {
            color: #0f172a;
            font-size: 18px;
            font-weight: 900;
        }

        .service-detail-grid,
        .service-extra-grid,
        .service-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-top: 20px;
        }

        .service-duration-card,
        .service-field-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 20px;
        }

        .service-duration-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 10px 0 18px;
        }

        .service-duration-toggle {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .duration-option {
            height: 44px;
            border: 1px solid #dbe4f0;
            border-radius: 14px;
            background: white;
            color: #475569;
            font-weight: 800;
            cursor: pointer;
        }

        .duration-option.active {
            background: #14b8a6;
            border-color: #14b8a6;
            color: white;
        }

        .service-expertise-wrap {
            margin-top: 22px;
        }

        .service-form-field {
            min-width: 0;
        }

        .service-notes-box {
            min-height: 140px !important;
            height: auto !important;
            padding: 16px !important;
            resize: vertical;
            margin-top: 8px;
        }

        .exp-name {
            font-size: 12px;
            font-weight: 800;
            display: block;
        }

        .exp-meta {
            font-size: 10px;
            opacity: 0.8;
        }

        /* Admin Menu Enhancement */
        .admin-nav-toolbar {
            display: flex;
            gap: 12px;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 12px;
            margin-left: 16px;
            border: 1px solid #e2e8f0;
        }

        .admin-nav-item {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 800;
            color: #64748b;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-nav-item:hover {
            color: var(--brand-secondary);
            background: #e2e8f0;
        }

        .admin-nav-item.active {
            background: white;
            color: var(--brand-secondary);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
        }

        .admin-nav-item i {
            font-size: 12px;
            opacity: 0.8;
        }

        .stat-card-interactive {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .stat-card-interactive:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--brand-primary);
        }

        .stat-card-interactive::after {
            content: "\f061";
            /* FontAwesome Arrow */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 16px;
            bottom: 16px;
            font-size: 14px;
            color: var(--brand-primary);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
        }

        .stat-card-interactive:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .tab-btn {
            padding: 8px 20px;
            border-radius: 8px;
            border: none;
            background: transparent;
            color: #64748b;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tab-btn.active {
            background: white;
            color: var(--brand-secondary);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .orders-tab-switcher {
            margin: 6px auto 8px;
            display: flex;
            gap: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 6px;
            border-radius: 18px;
            border: 1px solid #dbe4f0;
            box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.35);
            width: min(100%, 860px);
            align-items: center;
            justify-content: center;
        }

        .orders-tab-switcher .tab-btn {
            flex: 1 1 0;
            min-width: 0;
            padding: 12px 22px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 800;
            color: #64748b;
            text-align: center;
        }

        .orders-tab-switcher .tab-btn.active {
            background: white;
            color: var(--brand-secondary);
            box-shadow: 0 8px 18px -14px rgba(46, 49, 146, 0.45);
        }

        .wizard-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid #f1f5f9;
        }

        .wizard-back {
            color: #94a3b8;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
        }

        .wizard-next {
            background: var(--brand-secondary);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 14px;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            box-shadow: 0 10px 20px rgba(46, 49, 146, 0.2);
            transition: all 0.3s;
        }

        .wizard-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(46, 49, 146, 0.3);
        }

        .p-name {
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-secondary);
            margin-bottom: 4px;
            height: 32px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
            word-break: break-word;
        }

        .p-price {
            font-size: 14px;
            font-weight: 800;
            color: var(--brand-primary);
            margin-bottom: 4px;
        }

        .p-verified {
            font-size: 9px;
            color: #10b981;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 8px;
        }

        .p-actions-box {
            margin-top: auto;
        }

        .p-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.3;
            height: 34px;
            overflow: hidden;
        }

        .p-price {
            font-size: 16px;
            font-weight: 800;
            color: #d63384;
            margin-bottom: 8px;
        }

        .p-seller {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .p-actions {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 6px;
        }

        .btn-price {
            background: white;
            border: 1.5px solid var(--brand-primary);
            color: var(--brand-primary);
            padding: 6px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            text-align: center;
        }

        .btn-price:hover {
            background: var(--brand-primary);
            color: white;
        }

        .btn-cart-small {
            background: var(--brand-secondary);
            color: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .view-pane {
            display: none;
        }

        .view-pane.active {
            display: block;
            animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .section-header {
            margin-bottom: 20px;
            border-left: 4px solid var(--brand-primary);
            padding-left: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-header h2 {
            font-size: 20px;
            font-weight: 800;
            color: var(--brand-secondary);
        }

        #auth-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3000;
        }

        .modal-body {
            background: white;
            width: 360px;
            padding: 24px;
            border-radius: 8px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .form-control {
            width: 100%;
            height: 38px;
            border: 1px solid var(--border);
            padding: 0 10px;
            font-family: inherit;
            font-size: 13px;
            border-radius: 4px;
        }

        .form-control::placeholder {
            color: #aab4c2;
            opacity: 1;
        }

        .btn-primary {
            width: 100%;
            height: 42px;
            background: var(--brand-primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 8px;
        }

        .profile-container {
            max-width: 800px;
            margin: 0 auto;
            display: block;
        }

        .profile-content {
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 24px;
        }

        .cart-container {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 380px;
            gap: 24px;
            padding: 24px 0;
            align-items: start;
        }

        .cart-main {
            min-width: 0;
        }

        .cart-list {
            min-height: 280px;
            padding: 0 18px;
            border: 1px solid #eef2f7;
            border-radius: 18px;
            background: #fbfdff;
        }

        .cart-sidebar {
            width: 100%;
            min-width: 0;
        }

        #cart-foot {
            width: 100%;
            box-sizing: border-box;
        }

        .cart-summary-card {
            background: white !important;
            padding: 28px !important;
            border-radius: 24px;
            border: 1px solid var(--border);
            position: sticky;
            top: 100px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            display: flex !important;
            flex-direction: column !important;
            gap: 20px;
        }

        .cart-summary-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px dashed #e2e8f0;
        }

        .cart-summary-label {
            font-weight: 800;
            color: #94a3b8;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
        }

        .cart-summary-total,
        #cart-total-price {
            font-weight: 900;
            font-size: 28px;
            color: var(--brand-secondary);
            line-height: 1;
            margin: 0;
        }

        .cart-summary-body {
            display: flex !important;
            flex-direction: column !important;
            gap: 14px !important;
            margin: 0 !important;
        }

        .cart-fulfillment-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .cart-fulfillment-option {
            min-height: 92px;
            border: 2px solid #222;
            border-radius: 18px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s;
            background: #fff;
        }

        .cart-fulfillment-option i {
            font-size: 22px;
            margin: 0;
        }

        .cart-fulfillment-option div {
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.15;
            text-align: center;
            max-width: none;
            white-space: nowrap;
        }

        .cart-summary-field {
            margin-bottom: 0 !important;
            display: block !important;
        }

        .cart-summary-field-label {
            display: block;
            margin-bottom: 8px;
            font-size: 10px;
            font-weight: 800;
            color: #64748b;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .cart-summary-input,
        .cart-summary-textarea {
            width: 100% !important;
            border: 1px solid #dbe4f0 !important;
            border-radius: 18px !important;
            box-sizing: border-box !important;
            font-size: 14px !important;
            background: #fff !important;
            box-shadow: none !important;
        }

        .cart-summary-input {
            height: 58px !important;
            padding: 0 22px !important;
        }

        .cart-summary-textarea {
            min-height: 120px !important;
            padding: 18px 22px !important;
            resize: none !important;
            font-family: inherit !important;
            line-height: 1.45;
        }

        .cart-summary-textarea.is-compact {
            min-height: 58px !important;
            height: 58px !important;
            padding: 16px 22px !important;
        }

        .cart-pickup-note {
            padding: 16px !important;
            background: #f0fdfa !important;
            border-radius: 12px !important;
            font-size: 13px !important;
            color: #0f766e !important;
            border: 1px solid #ccfbf1 !important;
            line-height: 1.5 !important;
            margin-top: 8px !important;
        }

        .cart-pickup-note i {
            margin-right: 8px;
        }

        .cart-serviceability-note {
            display: none;
            margin-top: 8px;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 12px;
            line-height: 1.45;
            font-weight: 750;
        }

        .cart-serviceability-note.info {
            display: block;
            color: #475569;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .cart-serviceability-note.success {
            display: block;
            color: #047857;
            background: #ecfdf5;
            border: 1px solid #bbf7d0;
        }

        .cart-serviceability-note.error {
            display: block;
            color: #b91c1c;
            background: #fef2f2;
            border: 1px solid #fecaca;
        }

        .cart-summary-checkout {
            height: 70px !important;
            margin-top: 4px !important;
            width: 100% !important;
            border: none !important;
            display: block !important;
            border-radius: 22px !important;
            background: var(--brand-primary) !important;
            color: white !important;
            font-size: 15px !important;
            font-weight: 900 !important;
            text-transform: uppercase !important;
            box-shadow: 0 14px 28px -10px rgba(0, 166, 153, 0.45) !important;
        }

        .cart-row {
            display: grid !important;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 24px;
            align-items: center !important;
            padding: 24px 0;
        }

        .cart-row-main {
            display: flex;
            gap: 16px;
            align-items: center;
            min-width: 0;
        }

        .cart-row-details {
            min-width: 0;
        }

        .cart-row-title {
            font-weight: 800;
            font-size: 16px;
            color: #1e293b;
            margin-bottom: 4px;
            line-height: 1.35;
            word-break: break-word;
        }

        .cart-row-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cart-row-summary {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            white-space: nowrap;
        }

        /* Dropdown Styles */
        .profile-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            min-width: 220px;
            padding: 8px;
            display: none;
            z-index: 2000;
            margin-top: 16px;
            text-align: left;
        }

        .profile-dropdown.show {
            display: block;
        }

        .profile-dropdown-item {
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            transition: 0.2s;
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.3;
            text-decoration: none;
        }

        .profile-dropdown-item i {
            width: 28px;
            min-width: 28px;
            text-align: center;
            font-size: 20px;
            line-height: 1;
        }

        .profile-dropdown-item:hover {
            background: #f8fafc;
            color: var(--brand-primary);
        }

        .profile-dropdown-item.active {
            background: var(--brand-primary);
            color: white;
        }

        #toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--brand-secondary);
            color: white;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 14px;
            box-shadow: var(--shadow-md);
            display: none;
            z-index: 5000;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateY(100px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Comprehensive Mobile Responsiveness - Modern & Native Feel */
        @media (max-width: 768px) {
            .inner-content {
                padding: 0 12px;
            }

            .top-utility {
                display: none;
            }

        header {
            padding: 12px 16px; /* 16px safe horizontal padding */
            background: white;
            position: sticky;
            top: 0;
            z-index: 2000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03); /* Softer premium shadow */
            border-bottom: 1px solid #f1f5f9;
        }

            .header-flex {
                display: grid;
                grid-template-columns: 1fr auto; /* Logo left, actions right */
                gap: 12px;
            }

            .logo {
                font-size: 20px;
            }

            .search-container {
                grid-row: 2;
                grid-column: 1 / span 2; /* Full width row 2 */
                margin-top: 4px;
            }

            .search-input {
                height: 48px;
                font-size: 14px;
                border-width: 1.5px;
                border-radius: 24px !important;
                background: #f8fafc;
                border-color: #e2e8f0 !important;
                box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
            }

            .search-btn {
                width: 44px; /* Icon only on mobile */
                text-indent: -9999px;
                position: relative;
            }

            .search-btn::after {
                content: "\f002";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                text-indent: 0;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                font-size: 16px;
            }

            .header-actions {
                gap: 16px;
            }

            .action-item span {
                display: none; /* Hide 'Cart', 'Sign In' text on small mobile */
            }

            .action-item i {
                font-size: 22px;
            }

            .main-nav {
                border-top: 1px solid #f1f5f9;
                /* Removed overflow hidden to allow swiping */
            }

            .nav-flex {
                display: flex;
                gap: 20px;
                overflow-x: scroll; /* Force scroll */
                white-space: nowrap;
                padding: 4px 16px 8px; /* Extra padding for reach */
                -webkit-overflow-scrolling: touch;
            }

            /* Modern subtle scrollbar specifically for mobile nav */
            .nav-flex::-webkit-scrollbar {
                height: 3px;
                display: block !important;
            }

            .nav-flex::-webkit-scrollbar-thumb {
                background: #e2e8f0;
                border-radius: 10px;
            }

            .nav-link {
                padding: 10px 4px;
                font-size: 13px;
                flex-shrink: 0;
            }

            .layout-grid {
                display: block !important; /* Force vertical stack */
                margin: 12px 0;
            }

            .cart-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 12px 0 24px;
            }

            .cart-sidebar {
                width: 100%;
            }

            .cart-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .cart-row-summary {
                align-items: flex-start;
            }

            .main-content {
                width: 100%;
            }

            .sidebar {
                display: none !important; /* Always hide desktop sidebar on mobile */
            }

            .mobile-cat-chips-container {
                display: block !important; /* Show mobile version specifically in explore view */
            }

            .cat-list {
                display: flex;
                overflow-x: auto;
                gap: 10px;
                padding: 4px 0 12px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .cat-item {
                background: white;
                border: 1px solid var(--border);
                border-radius: 50px;
                padding: 8px 18px !important;
                flex-shrink: 0;
                font-size: 13px !important;
                font-weight: 700 !important;
                color: var(--brand-secondary) !important;
                cursor: pointer;
            }

            /* Professional Grid Fix (Image 2) */
            .professional-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
                padding: 0 4px;
            }

            .prof-card {
                padding: 16px 8px !important;
                border-radius: 16px !important;
            }

            .prof-icon-box {
                width: 44px !important;
                height: 44px !important;
                font-size: 18px !important;
            }

            /* Account Activities Fix (Image 3) */
            .account-activities-header {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 16px !important;
            }

            .account-activities-tabs {
                width: 100% !important;
                display: flex !important;
                gap: 8px !important;
                overflow-x: auto !important;
                padding: 6px 4px !important;
                justify-content: flex-start !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .account-activities-tabs::-webkit-scrollbar {
                display: none;
            }
            .account-activities-tabs .tab-btn {
                white-space: nowrap !important;
                padding: 8px 16px !important;
                flex-shrink: 0 !important;
                font-size: 12px !important;
            }

            /* NearBy Works Refinement (Image 4) */
            .works-filter-bar button {
                width: 100% !important;
                height: 48px !important;
                margin-top: 8px !important;
                grid-column: span 2;
            }

            .works-header {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 12px !important;
            }

            .works-header button {
                width: 100% !important;
            }

            /* Inquiry Hub Refinement (Image Fix) */
            .inquiry-card {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 16px !important;
                padding: 16px !important;
            }

            .inquiry-icon {
                align-self: center;
                width: 40px !important;
                height: 40px !important;
                font-size: 16px !important;
            }

            .inquiry-body {
                text-align: center;
            }

            .inquiry-meta {
                justify-content: center;
                gap: 12px;
                margin-top: 8px;
            }

            .inquiry-card button {
                width: 100% !important;
                height: 44px;
                font-size: 14px !important;
            }

            .hero-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px 12px;
                gap: 12px;
                width: 100%;
                margin-bottom: 12px;
            }

            .hero-text h1 {
                font-size: 18px !important;
                line-height: 1.3;
            }

            .hero-text p {
                font-size: 12px !important;
                margin-bottom: 8px;
            }

            .post-req-btn {
                width: 100%;
                padding: 14px;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr); /* Force 2 columns on mobile */
                gap: 10px;
            }

            .p-card {
                border-radius: 8px;
            }

            .p-img-box {
                height: 140px; /* Slightly taller for 2-column view */
            }

            .p-name {
                font-size: 12px;
                height: 34px;
            }

            .section-header h2 {
                font-size: 18px !important;
            }

            /* Cart Mobile Fixes */
            #cart-foot {
                flex-direction: column !important;
                padding: 16px !important;
                gap: 12px !important;
            }

            #cart-foot > div {
                width: 100% !important;
            }

            #cart-foot > div:first-child {
                justify-content: space-between !important;
            }

            #cart-delivery-block {
                justify-content: flex-start !important;
                gap: 14px !important;
                margin-bottom: 0 !important;
            }

            #cart-total-price {
                font-size: 24px !important;
            }

            #cart-list {
                padding: 12px !important;
                min-height: 0 !important;
            }

            #cart-list .cart-row:last-child {
                border-bottom: 0 !important;
            }

            #cart-list .cart-row {
                display: grid !important;
                grid-template-columns: minmax(0, 1fr) 72px !important;
                gap: 10px !important;
                padding: 14px 0 !important;
                align-items: start !important;
            }

            #cart-list .cart-row-main {
                gap: 12px !important;
                align-items: flex-start !important;
                min-width: 0 !important;
            }

            #cart-list .cart-row-main > div:first-child {
                width: 72px !important;
                height: 72px !important;
                flex: 0 0 72px !important;
            }

            #cart-list .cart-row-title {
                font-size: 14px !important;
                line-height: 1.3 !important;
                margin-bottom: 8px !important;
                overflow-wrap: anywhere;
            }

            #cart-list .cart-row-meta {
                gap: 8px !important;
                align-items: center !important;
            }

            #cart-list .cart-row-summary {
                align-items: flex-end !important;
                justify-content: flex-start !important;
                gap: 12px !important;
            }

            .cart-summary-card {
                padding: 18px !important;
                border-radius: 20px;
                gap: 16px;
            }

            .cart-summary-header {
                padding-bottom: 14px;
            }

            .cart-fulfillment-option {
                min-height: 84px;
                border-radius: 16px;
            }

            .cart-summary-input {
                height: 52px !important;
                padding: 0 18px !important;
            }

            .cart-summary-textarea {
                min-height: 112px !important;
                padding: 16px 18px !important;
            }

            .cart-summary-checkout {
                height: 64px !important;
                border-radius: 20px !important;
            }
            .view-pane {
                padding: 12px !important;
            }

            /* Form refinement for mobile */
            .form-control {
                font-size: 16px !important; /* Prevent iOS zoom */
            }

            /* Hub Flipkart-style Mobile Overrides */
            .hub-mobile-header { display: flex !important; }
            .hub-search-section { display: block !important; }
            .mobile-post-btn { display: flex !important; }
            .hub-content-container { display: block !important; padding: 12px 12px 100px 12px !important; }
            .desktop-only { display: none !important; }

            /* Mobile Bottom Navigation - always show on mobile */
            #mobile-bottom-nav { 
                display: flex !important; 
                position: fixed !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                height: 65px !important;
                background: white !important;
                border-top: 1px solid #f1f5f9 !important;
                z-index: 5000 !important;
                padding: 0 !important;
            }
            #mobile-bottom-nav > div {
                display: flex !important;
                width: 100% !important;
                height: 100% !important;
            }
            #mobile-bottom-nav .nav-item-box {
                flex: 1 !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 4px !important;
            }

            /* Push AI chat input flush above the bottom nav */
            #ai-chat-container { 
                bottom: 65px !important; 
                border-radius: 0 !important;
                padding-bottom: 14px !important;
                box-shadow: 0 -4px 12px rgba(0,0,0,0.04) !important;
            }

            /* All views need bottom padding so content isn't behind bottom nav */
            .main-content { padding-bottom: 80px; }
            #pane-sell { padding-bottom: 140px !important; }
        }

        /* Voice Assist Styling */
        .voice-section {
            background: #fdf2f2;
            border: 2px dashed #fca5a5;
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .voice-section.recording {
            background: #fee2e2;
            border-color: #ef4444;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
        }

        .recording-cir {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #ef4444;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .recording-cir::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid #ef4444;
            opacity: 0;
        }

        .recording-cir.active::after {
            animation: ripple 1.5s infinite;
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        /* Admin Hub Isolation Styles */
        body.admin-mode .public-nav-item,
        body.admin-mode .search-container,
        body.admin-mode #header-cart-btn,
        body.admin-mode #auth-trigger,
        body.admin-mode .top-utility {
            display: none !important;
            visibility: hidden !important;
        }

        body.admin-mode .main-nav {
            padding: 10px 0;
            background: #f8fafc;
            border-bottom: 2px solid var(--brand-secondary);
        }

        .recording-cir:hover {
            transform: scale(1.05);
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .live-transcript-box,
        .live-transcript {
            min-height: 80px;
            background: #fff;
            border: 1px solid #fee2e2;
            border-radius: 12px;
            margin-top: 15px;
            padding: 15px;
            font-size: 15px;
            color: #444;
            line-height: 1.5;
            text-align: left;
            position: relative;
        }

        .live-transcript-box:empty::before,
        .live-transcript:empty::before {
            content: "Your words will appear here...";
            color: #999;
            font-style: italic;
        }

        .live-transcript-box .interim,
        .live-transcript .interim {
            color: #999;
        }
        .sell-topbar {
            max-width: var(--container-width);
            margin: 0 auto 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .sell-page-title {
            font-size: 28px;
            line-height: 1.1;
            margin-bottom: 6px;
            color: #0f172a;
            font-weight: 800;
        }

        .sell-page-subtitle {
            font-size: 15px;
            line-height: 1.55;
            color: #64748b;
            max-width: 700px;
        }

        .sell-form-wrap {
            max-width: var(--container-width);
            margin: 0 auto 40px;
        }

        .sell-create-card {
            background: #ffffff;
            border: 1px solid #dbe4f0;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.12);
        }

        .sell-kicker {
            font-size: 12px;
            font-weight: 900;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .sell-create-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 14px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .sell-create-header h3 {
            font-size: 22px;
            line-height: 1.15;
            margin-bottom: 6px;
            color: #0f172a;
            font-weight: 700;
        }

        .sell-create-header p {
            color: #64748b;
            line-height: 1.6;
            max-width: 640px;
        }

        .sell-progress-shell {
            width: 210px;
            flex-shrink: 0;
        }

        .sell-progress-shell span {
            display: block;
            font-size: 12px;
            font-weight: 800;
            color: #94a3b8;
            margin-bottom: 8px;
            text-align: right;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .sell-progress-track {
            width: 100%;
            height: 8px;
            border-radius: 999px;
            background: #e2e8f0;
            overflow: hidden;
        }

        .sell-progress-line {
            width: 50%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, #14b8a6 0%, #0f766e 100%);
        }

        .sell-step-panel {
            display: grid;
            gap: 16px;
        }

        .sell-form-grid {
            display: grid;
            gap: 14px;
        }

        .sell-form-grid-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .sell-field-block {
            min-width: 0;
        }

        .sell-field-block-full {
            width: 100%;
        }

        .sell-field-block label {
            display: block;
            margin-bottom: 10px;
            font-size: 13px;
            font-weight: 800;
            color: #334155;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        #pane-sell .form-control {
            border-radius: 14px !important;
            border: 1px solid #dbe4f0 !important;
            min-height: 46px;
            padding: 0 16px !important;
            font-size: 14px;
            box-shadow: none !important;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        #pane-sell textarea.form-control {
            min-height: 118px;
            height: auto !important;
            padding: 14px !important;
            resize: vertical;
        }

        #pane-sell .form-control:focus {
            border-color: #14b8a6 !important;
            box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08) !important;
        }

        .sell-condition-toggle {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .sell-condition-btn {
            height: 46px;
            border-radius: 14px;
            border: 1px solid #dbe4f0;
            background: #ffffff;
            color: #475569;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sell-condition-btn.is-active {
            background: linear-gradient(180deg, #1fb6aa 0%, #14b8a6 100%);
            color: #ffffff;
            border-color: #14b8a6;
            box-shadow: 0 12px 22px -16px rgba(20, 184, 166, 0.8);
        }

        .sell-inline-hints {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .sell-inline-hints-tight button {
            height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid #dbe4f0;
            background: #f8fafc;
            color: #475569;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        .sell-description-box {
            min-height: 118px !important;
        }

        .sell-upload-box {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 16px;
            border-radius: 16px;
            border: 1px dashed #b9cadf;
            background: linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
            cursor: pointer;
            transition: border-color 0.2s, transform 0.2s, background 0.2s;
        }

        .sell-upload-box:hover {
            border-color: #14b8a6;
            background: #f8fffe;
            transform: translateY(-1px);
        }

        .sell-upload-icon {
            width: 50px;
            height: 50px;
            border-radius: 18px;
            background: rgba(20, 184, 166, 0.12);
            color: #0f766e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .sell-upload-copy strong {
            display: block;
            font-size: 15px;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .sell-upload-copy span {
            color: #64748b;
            line-height: 1.5;
            font-size: 14px;
        }

        .sell-review-panel {
            display: grid;
            grid-template-columns: 220px minmax(0, 1fr);
            gap: 22px;
            padding: 24px;
            border: 1px solid #dbe4f0;
            border-radius: 24px;
            background: #f8fafc;
        }

        .sell-review-media {
            min-height: 200px;
            border-radius: 18px;
            background: #e2e8f0 center/cover no-repeat;
        }

        .sell-review-price {
            font-size: 28px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .sell-review-meta {
            font-size: 13px;
            font-weight: 800;
            color: #0f766e;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
        }

        .sell-review-copy p {
            color: #64748b;
            line-height: 1.7;
        }

        .sell-form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
        }

        .sell-back-btn {
            height: 46px;
            padding: 0 24px;
            border-radius: 16px;
            border: 1px solid #dbe4f0;
            background: #ffffff;
            color: #0f172a;
            font-weight: 800;
            cursor: pointer;
        }

        .sell-submit-btn {
            width: auto !important;
            min-width: 176px;
            padding: 0 24px !important;
            height: 46px !important;
            border-radius: 12px !important;
            box-shadow: 0 12px 24px -12px rgba(20, 184, 166, 0.8);
        }

        .sell-secondary-btn,
        .sell-back-btn,
        .sell-submit-btn {
            appearance: none;
            -webkit-appearance: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            white-space: nowrap;
        }

        .sell-secondary-btn {
            margin-left: auto;
            height: 42px;
            min-width: 132px;
            padding: 0 18px;
            border: 1px solid #dbe4f0;
            border-radius: 12px;
            background: #ffffff;
            color: #0f172a;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.1);
        }

        .sell-tabs {
            display: flex;
            gap: 32px;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 32px;
            padding-bottom: 0;
        }

        .sell-tab {
            padding: 12px 4px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            color: #64748b;
            position: relative;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sell-tab:hover {
            color: var(--brand-primary);
        }

        .sell-tab.active {
            color: var(--brand-primary);
        }

        .sell-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-primary);
        }

        .img-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, 80px);
            justify-content: start;
            align-items: start;
            gap: 12px;
            margin-top: 10px;
            width: 100%;
            max-width: 100%;
            overflow: visible;
        }

        .img-preview-item {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            border: 1px solid var(--border);
        }

        #pane-sell .img-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, 80px);
            justify-content: start;
            align-items: start;
            gap: 12px;
            width: 100%;
            max-width: 100%;
            overflow: visible;
        }

        /* Global Modal System */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: modalFadeIn 0.2s ease-out;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto !important;
            position: relative;
            animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        .modal-body {
            padding: 32px;
        }

        /* Admin Pane Refinements */
        .admin-pane-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }

        .status-approved {
            background: #dcfce7;
            color: #166534;
        }

        .status-rejected {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Inquiry Modern Styling */
        .inquiry-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .inquiry-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-primary);
        }

        .inquiry-icon {
            width: 48px;
            height: 48px;
            background: #eff6ff;
            color: var(--brand-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .inquiry-body {
            flex: 1;
        }

        .inquiry-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .inquiry-meta {
            font-size: 13px;
            color: #64748b;
            display: flex;
            gap: 16px;
        }

        .inquiry-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            background: #f1f5f9;
            color: #475569;
            text-transform: uppercase;
        }

        /* Admin Dashboard Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: left;
            transition: transform 0.2s;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .stat-label {
            font-size: 13px;
            color: #64748b;
            font-weight: 700;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--brand-secondary);
        }

        .stat-sub {
            font-size: 11px;
            color: #94a3b8;
            margin-top: 4px;
        }

        .admin-tabs {
            display: flex;
            gap: 24px;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 32px;
        }

        .admin-tab {
            padding: 12px 4px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            color: #64748b;
            position: relative;
            transition: all 0.2s;
        }

        .admin-tab:hover {
            color: var(--brand-primary);
        }

        .admin-tab.active {
            color: var(--brand-primary);
        }

        .admin-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-primary);
        }

        .admin-inventory-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: white;
            padding: 12px 20px;
            border-radius: 16px;
            border: 1px solid var(--border);
            margin-bottom: 24px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
        }

        .inv-toggle-group {
            display: flex;
            background: #e2e8f0;
            padding: 3px;
            border-radius: 8px;
            gap: 2px;
        }

        .inv-toggle-btn {
            border: none;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            color: #64748b;
        }

        .inv-toggle-btn.active {
            background: white;
            color: var(--brand-primary);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .inventory-compact-search {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        /* Admin Mode Overrides */
        body.admin-mode .sidebar {
            display: none !important;
        }

        body.admin-mode .layout-grid {
            grid-template-columns: 1fr;
            margin: 12px auto;
        }

        .admin-pane-container {
            max-width: 100%;
            animation: fadeIn 0.3s ease;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            table-layout: fixed;
        }

        .admin-pane-container {
            padding: 16px 24px;
            background: #f8fafc;
        }

        .admin-table th,
        .admin-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #f1f5f9;
            font-size: 14px;
        }

        .admin-table th {
            background: #f8fafc;
            color: #64748b;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .admin-data-row {
            background: white;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 10px 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.2s;
        }

        .admin-data-row:hover {
            border-color: var(--brand-primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transform: translateX(4px);
        }

        .row-thumb {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            object-fit: cover;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
        }

        .row-main {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .row-title-box {
            width: 280px;
        }

        .row-title {
            font-weight: 700;
            font-size: 14px;
            color: var(--brand-secondary);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .row-id {
            font-size: 10px;
            color: #94a3b8;
            font-family: monospace;
            display: block;
            margin-top: 2px;
        }

        .row-meta-group {
            display: flex;
            gap: 16px;
            align-items: center;
            flex: 1;
        }

        .row-price-badge {
            font-weight: 800;
            color: var(--brand-primary);
            font-size: 14px;
            min-width: 90px;
        }

        .row-cat-tag {
            padding: 3px 10px;
            background: #f1f5f9;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #475569;
            text-transform: uppercase;
        }

        .row-actions {
            display: flex;
            gap: 8px;
        }

        .segmented-control {
            display: flex;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 10px;
            gap: 2px;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); opacity: 0; }
            to   { transform: translateY(0);    opacity: 1; }
        }

        /* NearBy Works Style Overrides - Premium Refined */
        .works-pane-container {
            background: white;
            border-radius: 0;
            padding: 24px 0;
            margin-bottom: 24px;
        }

        .works-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .works-header h2 {
            font-size: 20px !important;
            font-weight: 800 !important;
            color: var(--brand-secondary);
        }

        .works-filter-bar {
            background: #f8fafc;
            padding: 16px !important;
            border-radius: 12px !important;
            margin-bottom: 24px !important;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) auto !important;
            gap: 12px !important;
            border: 1px solid #eef2f6 !important;
        }

        .works-filter-bar .form-control {
            height: 40px !important;
            border: 1px solid #cbd5e1 !important;
            background: white !important;
        }

        @media (max-width: 768px) {
            .works-pane-container {
                padding: 16px;
            }

            .works-header {
                flex-direction: row !important; /* Keep it row for title + button */
                gap: 8px !important;
                text-align: left !important;
            }

            .works-header h2 {
                font-size: 18px !important;
                flex: 1;
            }

            .works-filter-bar {
                grid-template-columns: 1fr 1fr !important;
                padding: 12px !important;
            }

            .works-filter-bar > div:nth-child(n+3) {
                grid-column: span 1;
            }

            .works-filter-bar button {
                grid-column: span 2;
            }

            .works-filter-bar label {
                text-align: left !important;
            }

            #inline-interest-form {
                text-align: left !important;
            }

            #inline-interest-form .form-group label {
                text-align: left !important;
            }
        }

        .seg-btn {
            border: none;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .seg-btn.active {
            background: white;
            color: var(--brand-primary);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .seg-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.5);
            color: var(--brand-secondary);
        }

        /* Mobile App View Optimization */
        @media (max-width: 768px) {
            .inner-content {
                padding: 0 12px;
            }

            .top-utility { display: flex; }
            header { padding: 8px 0 !important; }
            .logo { font-size: 20px !important; }
            .header-flex { 
                display: flex !important; 
                flex-wrap: wrap !important; 
                justify-content: space-between !important; 
                align-items: center !important; 
                row-gap: 8px !important; 
                padding: 10px 0 !important;
            }
            .logo { order: 1; flex-shrink: 0; }
            .header-actions { order: 2; display: flex; gap: 20px; align-items: center; margin-left: auto; }
            .search-container { 
                order: 3; 
                flex-basis: 100%; 
                display: flex !important; 
                border: 2px solid var(--brand-primary); 
                border-radius: 8px; 
                overflow: hidden;
                background: white;
            }
            .search-input { border: none !important; padding: 12px 14px !important; flex: 1; font-size: 14px; outline: none; }
            .search-btn { 
                background: var(--brand-primary) !important; 
                color: white !important; 
                border: none !important; 
                padding: 0 18px !important; 
                display: flex !important;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }
            .action-item i { font-size: 28px; color: var(--brand-secondary); }
            body:not(.view-explore) .mobile-view-title { display: none !important; }

            .nav-flex {
                gap: 16px;
                overflow-x: auto;
                white-space: nowrap;
                padding: 10px 0;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .nav-flex::-webkit-scrollbar {
                display: none;
            }

            .layout-grid {
                grid-template-columns: 1fr;
                margin: 12px auto;
            }

            .sidebar {
                border: none;
                background: none;
                padding: 0;
            }

            .cat-list {
                display: flex;
                gap: 8px;
                overflow-x: auto;
                padding-bottom: 8px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .cat-list::-webkit-scrollbar {
                display: none;
            }

            .cat-item {
                background: white;
                border: 1px solid var(--border);
                border-radius: 20px;
                padding: 6px 14px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .hero-banner {
                padding: 20px;
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .hero-text h1 {
                font-size: 18px;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .p-img-box {
                height: 140px;
            }

            .p-name {
                font-size: 11px;
                height: 28px;
            }

            /* Admin Refactoring */
            .admin-table {
                display: block;
                overflow-x: auto;
            }

            .admin-toolbar {
                flex-direction: column;
                gap: 12px;
                align-items: stretch !important;
            }

            .admin-toolbar .search-bar {
                width: 100% !important;
            }

            .segmented-control {
                width: 100%;
            }

            .sell-tabs {
                overflow-x: auto;
                white-space: nowrap;
                gap: 4px;
            }

            .sell-showcase,
            .sell-form-shell,
            .sell-form-grid,
            .sell-form-grid-3,
            .sell-review-panel {
                grid-template-columns: 1fr !important;
            }

            .sell-showcase-copy,
            .sell-showcase-panel,
            .sell-create-card,
            .sell-side-card {
                border-radius: 18px !important;
            }

            .sell-showcase-copy,
            .sell-showcase-panel,
            .sell-create-card {
                padding: 20px !important;
            }

            .sell-showcase-copy h2 {
                font-size: 28px !important;
                line-height: 1.15 !important;
            }

            .sell-showcase-copy p {
                font-size: 15px !important;
            }

            .sell-create-header {
                align-items: flex-start !important;
            }

            .sell-progress-shell {
                width: 100%;
                min-width: 0;
            }
            .sell-topbar {
                align-items: flex-start !important;
            }

            .sell-page-title {
                font-size: 28px !important;
                line-height: 1.12 !important;
            }

            .sell-page-subtitle {
                font-size: 15px !important;
            }

            .sell-create-card {
                padding: 20px !important;
                border-radius: 22px !important;
            }

            .sell-create-header {
                align-items: flex-start !important;
            }

            .sell-progress-shell {
                width: 100% !important;
            }

            .sell-progress-shell span {
                text-align: left !important;
            }

            .sell-form-grid-2,
            .sell-review-panel,
            .sell-condition-toggle,
            .sell-form-actions {
                grid-template-columns: 1fr !important;
                display: grid !important;
            }

            .sell-secondary-btn,
            .sell-submit-btn,
            .sell-back-btn {
                width: 100% !important;
            }

            .sell-upload-box {
                align-items: flex-start !important;
            }

            /* Modal & Page Refinements */
            #cart-modal-content,
            #login-modal-content,
            .modal-body {
                width: 95% !important;
                margin: 0 auto;
                padding: 16px !important;
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            #prod-detail-hero {
                height: 240px !important;
            }

            #prod-detail-gallery {
                justify-content: center;
            }

            #product-detail-modal .modal-body {
                max-height: 90vh;
                overflow-y: auto;
            }

            #prod-detail-content {
                text-align: center;
                align-items: center;
            }

            #prod-detail-actions {
                width: 100% !important;
            }

            /* Sell Page Mobile */
            #sell-manual-section {
                padding: 20px !important;
            }

            #sell-manual-section form>div {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            /* Global adjustments */
            h2 {
                font-size: 20px !important;
            }

            .section-header {
                margin-bottom: 12px !important;
            }
            .wizard-title-main {
                font-size: 18px !important;
            }
            .wizard-center-header {
                margin-bottom: 20px !important;
            }
        }

        /* Operational Command Hub Navigation */
        .admin-nav-toolbar {
            display: flex;
            gap: 12px;
            align-items: center;
            background: #fff;
            padding: 4px;
            border-radius: 12px;
        }

        .admin-nav-item {
            color: #64748b;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 10px;
            white-space: nowrap;
        }

        .admin-nav-item i {
            font-size: 14px;
            opacity: 0.8;
        }

        .admin-nav-item:hover {
            color: var(--brand-secondary);
            background: #f8fafc;
            transform: translateY(-1px);
        }

        .admin-nav-item.active {
            color: var(--brand-primary);
            background: #f0fdfa;
            box-shadow: 0 4px 12px rgba(0, 166, 153, 0.08);
        }

        .admin-pane {
            background:
                radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 24%),
                linear-gradient(180deg, #eef4fb 0%, #f7fafc 38%, #f8fafc 100%);
            min-height: calc(100vh - 140px);
        }

        #admin-page-title {
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 1.8px;
            color: #1e3a8a !important;
            text-transform: uppercase;
        }

        #admin-header-actions {
            padding: 8px 14px;
            border-radius: 999px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .admin-shell {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 28px 0 48px;
        }

        .admin-command-bar {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
            padding: 28px 30px;
            border-radius: 28px;
            border: 1px solid rgba(148, 163, 184, 0.22);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
                radial-gradient(circle at right top, rgba(0, 166, 153, 0.14), transparent 28%);
            box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.28);
            margin-bottom: 18px;
        }

        .admin-kicker,
        .admin-section-kicker,
        .admin-modal-kicker {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .admin-command-copy h2,
        .admin-section-head h3 {
            margin: 0 0 8px;
            color: #0f172a;
            font-size: 30px;
            line-height: 1.15;
        }

        .admin-command-copy p,
        .admin-section-head p {
            margin: 0;
            max-width: 760px;
            color: #64748b;
            line-height: 1.65;
            font-size: 15px;
        }

        .admin-command-actions,
        .admin-toolbar-actions,
        .admin-inline-actions,
        .admin-settings-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .admin-command-btn,
        .admin-ghost-btn {
            border: none;
            cursor: pointer;
            font-weight: 800;
            font-size: 14px;
            border-radius: 14px;
            padding: 0 20px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .admin-command-btn {
            background: #0f766e;
            color: white;
            box-shadow: 0 14px 26px -18px rgba(15, 118, 110, 0.75);
        }

        .admin-command-btn.secondary {
            background: #e2e8f0;
            color: #0f172a;
            box-shadow: none;
        }

        .admin-ghost-btn {
            background: #f8fafc;
            color: #334155;
            border: 1px solid #dbe4ee;
        }

        .admin-ghost-btn.danger {
            background: #fff1f2;
            color: #e11d48;
            border-color: #fecdd3;
        }

        .admin-command-btn:hover,
        .admin-ghost-btn:hover,
        .admin-action-tile:hover {
            transform: translateY(-1px);
        }

        .admin-nav-shell {
            padding: 8px;
            border-radius: 22px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(12px);
            box-shadow: 0 16px 34px -26px rgba(15, 23, 42, 0.25);
            margin-bottom: 18px;
        }

        .admin-body {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .admin-section-pane {
            padding: 0;
        }

        .admin-section-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 18px;
            margin-bottom: 14px;
        }

        .admin-stats-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
            margin-bottom: 18px;
        }

        .admin-stat-card {
            position: relative;
            overflow: hidden;
            padding: 22px 22px 24px;
            border-radius: 22px;
            border: 1px solid rgba(226, 232, 240, 0.92);
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
            box-shadow: 0 18px 34px -28px rgba(15, 23, 42, 0.24);
        }

        .admin-stat-card::after {
            content: "";
            position: absolute;
            inset: auto -26px -26px auto;
            width: 86px;
            height: 86px;
            border-radius: 50%;
            opacity: 0.16;
        }

        .admin-stat-card.accent-users::after { background: #4f46e5; }
        .admin-stat-card.accent-products::after { background: #f97316; }
        .admin-stat-card.accent-orders::after { background: #10b981; }
        .admin-stat-card.accent-revenue::after { background: #e11d48; }
        .admin-stat-card.accent-services::after { background: #0ea5e9; }

        .admin-stat-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 800;
            color: #64748b;
            margin-bottom: 18px;
        }

        .admin-stat-value {
            font-size: 42px;
            line-height: 1;
            font-weight: 900;
            color: #0f172a;
        }

        .admin-overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 16px;
        }

        .admin-panel-card {
            background: rgba(255,255,255,0.94);
            border: 1px solid rgba(226, 232, 240, 0.96);
            border-radius: 24px;
            padding: 22px;
            box-shadow: 0 18px 36px -30px rgba(15, 23, 42, 0.22);
        }

        .admin-panel-head h4 {
            margin: 0;
            color: #0f172a;
            font-size: 20px;
        }

        .admin-action-list,
        .admin-guidance-list,
        .admin-card-stack,
        .admin-bid-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .admin-action-tile {
            width: 100%;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            border-radius: 16px;
            padding: 16px 18px;
            cursor: pointer;
            font-weight: 800;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .admin-action-tile span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .admin-guidance-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #475569;
            line-height: 1.55;
            font-size: 14px;
        }

        .admin-guidance-item i {
            color: #0f766e;
            margin-top: 2px;
        }

        .admin-inline-tabs,
        .admin-segmented-control {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .admin-inline-tab,
        .seg-btn {
            height: 40px;
            border-radius: 999px;
            border: 1px solid #dbe4ee;
            background: #f8fafc;
            color: #475569;
            font-size: 12px;
            font-weight: 800;
            padding: 0 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .admin-inline-tab.active,
        .seg-btn.active {
            background: #0f766e;
            color: white;
            border-color: #0f766e;
            box-shadow: 0 12px 22px -18px rgba(15, 118, 110, 0.7);
        }

        .admin-filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .admin-filter-controls {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .admin-filter-select,
        .admin-search-input {
            height: 42px;
            border-radius: 14px;
            border: 1px solid #dbe4ee;
            background: #fff;
            color: #1e293b;
            padding: 0 14px;
            font-size: 14px;
            font-weight: 600;
            outline: none;
        }

        .admin-search-input {
            min-width: 280px;
        }

        .admin-table-wrap {
            overflow: auto;
            border: 1px solid #edf2f7;
            border-radius: 20px;
            background: #fff;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 820px;
        }

        .admin-table thead {
            background: #f8fafc;
        }

        .admin-table th,
        .admin-table td {
            padding: 16px 18px;
            border-bottom: 1px solid #eef2f7;
            vertical-align: top;
        }

        .admin-table th {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #94a3b8;
        }

        .admin-table tbody tr:hover {
            background: #fbfdff;
        }

        .admin-pagination-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .admin-page-chip {
            min-width: 110px;
            text-align: center;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 999px;
            padding: 10px 16px;
            font-weight: 800;
            color: #475569;
        }

        .admin-settings-card textarea {
            min-height: 132px;
            resize: vertical;
        }

        .admin-modal-shell {
            padding: 30px;
            border-radius: 28px;
            background: white;
            position: relative;
            box-shadow: 0 26px 60px -36px rgba(15, 23, 42, 0.4);
        }

        .admin-modal-shell h2 {
            margin: 0 0 18px;
            color: #0f172a;
        }

        .admin-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 38px;
            height: 38px;
            border: none;
            border-radius: 50%;
            background: #f1f5f9;
            color: #475569;
            cursor: pointer;
        }

        .admin-modal-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .admin-modal-grid-third {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .admin-image-preview {
            height: 180px;
            border: 1px dashed #cbd5e1;
            border-radius: 18px;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 12px;
            overflow: hidden;
        }

        .admin-modal-actions {
            margin-top: 22px;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            flex-wrap: wrap;
        }

        .admin-modal-actions.split {
            justify-content: space-between;
        }

        .admin-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-bottom: 16px;
        }

        .admin-detail-card,
        .admin-detail-note {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            padding: 16px;
        }

        .admin-detail-card span,
        .admin-detail-note strong {
            display: block;
            margin-bottom: 6px;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #94a3b8;
        }

        .admin-detail-card strong {
            color: #0f172a;
            font-size: 15px;
        }

        .admin-total-row {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
            font-size: 18px;
            font-weight: 900;
            color: #0f172a;
        }

        @media (max-width: 1100px) {
            .admin-command-bar,
            .admin-section-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .admin-stats-grid,
            .admin-overview-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .admin-modal-grid-third {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .admin-shell {
                padding: 16px 0 28px;
            }

            .admin-command-bar,
            .admin-panel-card,
            .admin-modal-shell {
                padding: 18px;
                border-radius: 20px;
            }

            .admin-command-copy h2,
            .admin-section-head h3 {
                font-size: 24px;
            }

            .admin-stats-grid,
            .admin-overview-grid,
            .admin-detail-grid,
            .admin-modal-grid,
            .admin-modal-grid-third {
                grid-template-columns: 1fr;
            }

            .admin-search-input {
                min-width: 0;
                width: 100%;
            }

            .admin-filter-controls,
            .admin-command-actions,
            .admin-inline-actions,
            .admin-modal-actions.split {
                width: 100%;
            }

            .admin-command-btn,
            .admin-ghost-btn {
                width: 100%;
            }

            .admin-nav-shell {
                padding: 6px;
            }

            .admin-nav-toolbar {
                overflow-x: auto;
            }
        }

        .admin-shell-v2 {
            max-width: 1380px;
        }

        .admin-top-strip {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 14px 6px 18px;
        }

        .admin-top-strip h2 {
            margin: 0 0 6px;
            font-size: 26px;
            color: #0f172a;
        }

        .admin-top-strip p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }

        .admin-top-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .admin-workspace {
            display: grid;
            grid-template-columns: 270px minmax(0, 1fr);
            gap: 18px;
            align-items: start;
        }

        .admin-sidebar {
            position: sticky;
            top: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .admin-sidebar-card {
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.96);
            border-radius: 22px;
            padding: 16px;
            box-shadow: 0 18px 36px -30px rgba(15, 23, 42, 0.2);
        }

        .admin-sidebar-title {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #94a3b8;
            margin-bottom: 12px;
        }

        .admin-nav-shell {
            padding: 0;
            border: none;
            background: transparent;
            box-shadow: none;
            margin: 0;
        }

        .admin-nav-toolbar {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: stretch;
            background: transparent;
            padding: 0;
        }

        .admin-nav-item {
            background: #fff;
            border: 1px solid #e2e8f0;
            color: #475569;
            padding: 12px 14px;
            border-radius: 14px;
            font-size: 14px;
            justify-content: flex-start;
        }

        .admin-nav-item.active {
            color: #0f172a;
            background: linear-gradient(135deg, #ecfeff, #f0fdfa);
            border-color: #99f6e4;
            box-shadow: 0 12px 24px -22px rgba(15, 118, 110, 0.65);
        }

        .admin-content-stack {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .admin-section-head.compact {
            margin-bottom: 12px;
        }

        .admin-section-head.compact h3 {
            margin: 0;
            font-size: 22px;
        }

        .admin-stats-grid {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }

        .admin-overview-grid.compact {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .admin-action-card {
            border: 1px solid #e2e8f0;
            background: #fff;
            border-radius: 20px;
            padding: 18px;
            text-align: left;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: #0f172a;
            box-shadow: 0 14px 26px -24px rgba(15, 23, 42, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .admin-action-card i {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: #f0fdfa;
            color: #0f766e;
            font-size: 18px;
        }

        .admin-action-card strong {
            font-size: 16px;
        }

        .admin-action-card span {
            color: #64748b;
            font-size: 13px;
            line-height: 1.5;
        }

        .admin-action-card:hover {
            transform: translateY(-1px);
            border-color: #99f6e4;
            box-shadow: 0 18px 34px -26px rgba(15, 118, 110, 0.28);
        }

        .admin-sidebar-note .admin-guidance-item span {
            font-size: 13px;
        }

        @media (max-width: 1200px) {
            .admin-workspace {
                grid-template-columns: 1fr;
            }

            .admin-sidebar {
                position: static;
            }

            .admin-nav-toolbar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .admin-overview-grid.compact {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .admin-pane {
            background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
            min-height: calc(100vh - 74px);
        }

        .admin-app-shell {
            display: grid;
            grid-template-columns: 280px minmax(0, 1fr);
            min-height: calc(100vh - 74px);
            color: #0f172a;
        }

        .admin-app-shell.admin-theme-dark {
            background: #0f172a;
            color: #e2e8f0;
        }

        .admin-app-shell.admin-theme-dark .admin-topbar,
        .admin-app-shell.admin-theme-dark .admin-surface-card,
        .admin-app-shell.admin-theme-dark .admin-app-sidebar {
            background: rgba(15, 23, 42, 0.9);
            border-color: rgba(71, 85, 105, 0.5);
            color: #e2e8f0;
        }

        .admin-app-shell.admin-theme-dark .admin-searchbar,
        .admin-app-shell.admin-theme-dark .admin-sidebar-shortcut,
        .admin-app-shell.admin-theme-dark .admin-kpi-card {
            background: rgba(30, 41, 59, 0.85);
            border-color: rgba(71, 85, 105, 0.5);
            color: #e2e8f0;
        }

        .admin-app-sidebar {
            background: rgba(255, 255, 255, 0.8);
            border-right: 1px solid rgba(226, 232, 240, 0.9);
            backdrop-filter: blur(18px);
            padding: 26px 18px;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
        }

        .admin-app-shell.sidebar-collapsed {
            grid-template-columns: 92px minmax(0, 1fr);
        }

        .admin-app-shell.sidebar-collapsed .admin-brand-title,
        .admin-app-shell.sidebar-collapsed .admin-brand-subtitle,
        .admin-app-shell.sidebar-collapsed .admin-sidebar-kicker,
        .admin-app-shell.sidebar-collapsed .admin-nav-item span,
        .admin-app-shell.sidebar-collapsed .admin-sidebar-shortcut span {
            display: none;
        }

        .admin-app-shell.sidebar-collapsed .admin-brand-lockup {
            justify-content: center;
        }

        .admin-brand-lockup {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 30px;
        }

        .admin-brand-mark {
            width: 50px;
            height: 46px;
            border-radius: 0;
            background: transparent;
            border: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
        }

        .admin-brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .admin-brand-title {
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .admin-brand-subtitle {
            font-size: 12px;
            color: #64748b;
            font-weight: 700;
        }

        .admin-sidebar-section + .admin-sidebar-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(226, 232, 240, 0.9);
        }

        .admin-sidebar-kicker,
        .admin-card-kicker {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 800;
            color: #94a3b8;
        }

        .admin-sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 12px;
        }

        .admin-nav-item,
        .admin-sidebar-shortcut {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid transparent;
            background: transparent;
            padding: 12px 14px;
            border-radius: 16px;
            color: #334155;
            font-weight: 700;
            cursor: pointer;
            text-align: left;
            transition: all 0.18s ease;
        }

        .admin-nav-item:hover,
        .admin-sidebar-shortcut:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(226, 232, 240, 0.95);
        }

        .admin-nav-item.active {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(20, 184, 166, 0.14));
            border-color: rgba(99, 102, 241, 0.2);
            color: #1e293b;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
        }

        .admin-nav-item i,
        .admin-sidebar-shortcut i {
            width: 18px;
            text-align: center;
            color: #64748b;
        }

        .admin-main-shell {
            min-width: 0;
            padding: 22px 24px 28px;
        }

        .admin-topbar {
            position: sticky;
            top: 14px;
            z-index: 40;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 14px 18px;
            border-radius: 22px;
            border: 1px solid rgba(226, 232, 240, 0.9);
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 42px -34px rgba(15, 23, 42, 0.35);
            margin-bottom: 20px;
        }

        .admin-topbar-left,
        .admin-topbar-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .admin-searchbar {
            min-width: min(620px, 58vw);
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: #f8fafc;
            padding: 0 14px;
            height: 48px;
        }

        .admin-searchbar i {
            color: #94a3b8;
        }

        .admin-searchbar input {
            border: none;
            outline: none;
            background: transparent;
            width: 100%;
            color: inherit;
            font-size: 14px;
        }

        .admin-topbar-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: #ffffff;
            color: #334155;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.35);
        }

        .admin-topbar-bell {
            position: relative;
        }

        .admin-badge {
            position: absolute;
            top: 7px;
            right: 7px;
            min-width: 18px;
            height: 18px;
            border-radius: 999px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 5px;
        }

        .admin-profile-menu-wrap {
            position: relative;
        }

        .admin-profile-trigger {
            display: flex;
            align-items: center;
            gap: 12px;
            height: 48px;
            padding: 0 14px 0 10px;
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: white;
            cursor: pointer;
            color: inherit;
        }

        .admin-profile-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0f172a, #334155);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
        }

        .admin-profile-copy {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.15;
        }

        .admin-profile-copy strong {
            font-size: 13px;
        }

        .admin-profile-copy small {
            font-size: 11px;
            color: #94a3b8;
        }

        .admin-profile-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 180px;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 24px 50px -30px rgba(15, 23, 42, 0.45);
            padding: 8px;
            display: none;
        }

        .admin-profile-menu.open {
            display: block;
        }

        .admin-profile-menu button {
            width: 100%;
            background: transparent;
            border: none;
            padding: 10px 12px;
            border-radius: 12px;
            text-align: left;
            color: #334155;
            font-weight: 700;
            cursor: pointer;
        }

        .admin-profile-menu button:hover {
            background: #f8fafc;
        }

        .admin-view-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .admin-dashboard-hero,
        .admin-surface-card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 24px;
            box-shadow: 0 24px 50px -38px rgba(15, 23, 42, 0.3);
        }

        .admin-dashboard-hero {
            padding: 24px 26px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .admin-dashboard-hero h2 {
            margin: 8px 0 10px;
            font-size: 34px;
            line-height: 1.05;
            letter-spacing: -0.04em;
            color: #0f172a;
        }

        .admin-dashboard-hero p {
            margin: 0;
            max-width: 620px;
            color: #64748b;
            font-size: 15px;
        }

        .admin-hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .admin-primary-btn,
        .admin-secondary-btn,
        .admin-ghost-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 14px;
            font-weight: 800;
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
        }

        .admin-primary-btn {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
            box-shadow: 0 18px 32px -22px rgba(15, 23, 42, 0.6);
        }

        .admin-secondary-btn {
            background: white;
            color: #0f172a;
            border-color: rgba(203, 213, 225, 0.95);
        }

        .admin-ghost-btn {
            background: #f8fafc;
            color: #334155;
            border-color: rgba(226, 232, 240, 0.95);
        }

        .admin-kpi-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
        }

        .admin-kpi-card {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 22px;
            padding: 18px;
            box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.28);
        }

        .admin-kpi-head,
        .admin-card-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

        .admin-kpi-icon {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .admin-kpi-icon.users { background: rgba(79, 70, 229, 0.12); color: #4f46e5; }
        .admin-kpi-icon.products { background: rgba(249, 115, 22, 0.12); color: #f97316; }
        .admin-kpi-icon.orders { background: rgba(16, 185, 129, 0.12); color: #10b981; }
        .admin-kpi-icon.revenue { background: rgba(14, 165, 233, 0.12); color: #0284c7; }
        .admin-kpi-icon.services { background: rgba(168, 85, 247, 0.12); color: #9333ea; }

        .admin-kpi-label {
            color: #64748b;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .admin-kpi-value {
            font-size: 32px;
            line-height: 1;
            letter-spacing: -0.04em;
            color: #0f172a;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .admin-kpi-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .admin-kpi-trend {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 800;
        }

        .admin-kpi-trend.up {
            color: #047857;
            background: rgba(16, 185, 129, 0.12);
        }

        .admin-kpi-trend.down {
            color: #b91c1c;
            background: rgba(239, 68, 68, 0.12);
        }

        .admin-kpi-sparkline svg,
        .admin-chart-shell svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .admin-dashboard-columns,
        .admin-analytics-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
            gap: 18px;
        }

        .admin-surface-card {
            padding: 22px;
        }

        .admin-card-head h3 {
            margin: 8px 0 0;
            font-size: 20px;
            color: #0f172a;
            letter-spacing: -0.03em;
        }

        .admin-action-list,
        .admin-insight-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 18px;
        }

        .admin-action-item,
        .admin-insight-item {
            border-radius: 18px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: #f8fafc;
            padding: 16px;
        }

        .admin-action-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 14px;
            cursor: pointer;
        }

        .admin-action-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .admin-action-item.warning .admin-action-indicator { background: #f59e0b; }
        .admin-action-item.critical .admin-action-indicator { background: #ef4444; }
        .admin-action-item.info .admin-action-indicator { background: #3b82f6; }
        .admin-action-item.neutral .admin-action-indicator { background: #cbd5e1; }

        .admin-action-content strong,
        .admin-insight-item strong {
            display: block;
            font-size: 15px;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .admin-action-content span,
        .admin-insight-item span {
            color: #64748b;
            font-size: 13px;
            line-height: 1.5;
        }

        .admin-action-count {
            min-width: 42px;
            height: 42px;
            border-radius: 14px;
            background: white;
            border: 1px solid rgba(226, 232, 240, 0.95);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 900;
            color: #0f172a;
        }

        .admin-chart-shell {
            margin-top: 18px;
            min-height: 240px;
        }

        #admin-dashboard-section .admin-chart-shell {
            min-height: 0;
        }

        #admin-dashboard-section .admin-chart-shell svg {
            height: 180px;
        }

        .admin-chart-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            color: #64748b;
            font-size: 13px;
            font-weight: 700;
        }

        .admin-chart-total {
            font-size: 24px;
            font-weight: 900;
            color: #0f172a;
        }

        .admin-chart-legend {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            color: #94a3b8;
            font-size: 11px;
            font-weight: 700;
        }

        .admin-modules-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 18px;
        }

        .admin-module-card {
            border-radius: 20px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 18px;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }

        .admin-module-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.35);
        }

        .admin-module-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.06);
            color: #0f172a;
            margin-bottom: 18px;
        }

        .admin-module-card h4 {
            margin: 0 0 8px;
            font-size: 17px;
            color: #0f172a;
        }

        .admin-module-card p {
            margin: 0 0 18px;
            color: #64748b;
            font-size: 13px;
            line-height: 1.5;
        }

        .admin-module-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #334155;
            font-size: 13px;
            font-weight: 800;
        }

        .admin-module-meta span:last-child {
            color: #14b8a6;
        }

        .admin-table-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        #admin-dashboard-section .admin-dashboard-activity-card .admin-table-actions {
            flex-wrap: nowrap;
        }

        #admin-dashboard-section .admin-dashboard-activity-card .admin-filter-select {
            width: auto;
            min-width: 220px;
        }

        #admin-dashboard-section .admin-dashboard-chart-card {
            align-self: stretch;
        }

        .admin-table-wrap {
            border-radius: 18px;
            border: 1px solid rgba(226, 232, 240, 0.95);
            overflow: hidden;
            margin-top: 18px;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .admin-table thead th {
            padding: 14px 16px;
            background: #f8fafc;
            color: #64748b;
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 800;
            border-bottom: 1px solid rgba(226, 232, 240, 0.95);
        }

        .admin-table tbody td {
            padding: 16px;
            color: #334155;
            font-size: 14px;
            border-bottom: 1px solid rgba(241, 245, 249, 0.98);
            vertical-align: middle;
        }

        .admin-table tbody tr:last-child td {
            border-bottom: none;
        }

        .admin-pagination-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            margin-top: 16px;
        }

        .admin-page-chip {
            padding: 10px 14px;
            border-radius: 999px;
            background: #f8fafc;
            border: 1px solid rgba(226, 232, 240, 0.95);
            font-size: 13px;
            font-weight: 800;
            color: #334155;
        }

        .admin-filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .admin-filter-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .admin-filter-select,
        .admin-search-input {
            min-height: 42px;
            border-radius: 14px;
            border: 1px solid rgba(203, 213, 225, 0.95);
            background: white;
            color: #334155;
            padding: 0 14px;
        }

        .admin-search-input {
            min-width: 280px;
        }

        .admin-segmented-control {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .admin-segmented-control .seg-btn,
        .admin-inline-tab {
            min-height: 40px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(203, 213, 225, 0.95);
            background: white;
            color: #475569;
            font-weight: 800;
            cursor: pointer;
        }

        .admin-segmented-control .seg-btn.active,
        .admin-inline-tab.active {
            background: #0f172a;
            color: white;
            border-color: #0f172a;
        }

        .admin-inline-tabs {
            display: inline-flex;
            gap: 8px;
            margin-bottom: 18px;
        }

        .admin-kpi-loading {
            color: #64748b;
            font-weight: 700;
        }

        @media (max-width: 1360px) {
            .admin-kpi-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .admin-modules-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 1100px) {
            .admin-app-shell {
                grid-template-columns: 1fr;
            }

            .admin-app-sidebar {
                position: static;
                height: auto;
                border-right: none;
                border-bottom: 1px solid rgba(226, 232, 240, 0.9);
            }

            .admin-dashboard-columns,
            .admin-analytics-grid {
                grid-template-columns: 1fr;
            }

            .admin-searchbar {
                min-width: 0;
                width: 100%;
            }

            .admin-topbar {
                flex-direction: column;
                align-items: stretch;
            }

            .admin-topbar-left,
            .admin-topbar-right {
                width: 100%;
                justify-content: space-between;
            }
        }

        @media (max-width: 760px) {
            .admin-main-shell {
                padding: 14px;
            }

            .admin-dashboard-hero {
                padding: 18px;
                flex-direction: column;
                align-items: flex-start;
            }

            .admin-dashboard-hero h2 {
                font-size: 28px;
            }

            .admin-kpi-grid,
            .admin-modules-grid {
                grid-template-columns: 1fr;
            }

            .admin-searchbar {
                height: 44px;
            }

            .admin-table-actions,
            .admin-filter-bar {
                align-items: stretch;
            }

            .admin-filter-controls {
                width: 100%;
            }

            .admin-filter-select,
            .admin-search-input {
                width: 100%;
                min-width: 0;
            }

            #admin-dashboard-section .admin-dashboard-activity-card .admin-table-actions {
                width: 100%;
                flex-wrap: wrap;
            }

            #admin-dashboard-section .admin-dashboard-activity-card .admin-filter-select {
                width: 100%;
                min-width: 0;
            }

            .admin-pagination-bar {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .admin-top-strip {
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 0 14px;
            }

            .admin-overview-grid.compact,
            .admin-stats-grid {
                grid-template-columns: 1fr;
            }
        }


/* -------------------------------------------------- */

@keyframes success-pop {
                0% {
                    transform: scale(0);
                    opacity: 0;
                }

                100% {
                    transform: scale(1);
                    opacity: 1;
                }
            }

/* -------------------------------------------------- */

#order-status-filter::-webkit-scrollbar {
                                        display: none;
                                    }

/* -------------------------------------------------- */

.top-whatsapp-link,
.mobile-drawer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.top-whatsapp-link i,
.mobile-drawer-whatsapp i {
    color: #16a34a;
}

.nav-item-box { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 4px; 
    color: #94a3b8; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    cursor: pointer; 
    position: relative; 
    z-index: 1;
}

.nav-link,
.mobile-drawer-link,
.nav-item-box,
.orders-tab-switcher .tab-btn {
    text-decoration: none;
}
.nav-item-box i { font-size: 20px; transition: transform 0.3s; }
.nav-item-box span { font-size: 10px; font-weight: 700; transition: 0.2s; letter-spacing: 0.2px; }
.nav-item-box.active { color: var(--brand-primary); }
.nav-item-box.active i { transform: translateY(-2px); }
.nav-item-box.active::after { 
    content: ""; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 48px; 
    height: 48px; 
    background: #f0fdfa; 
    border-radius: 16px; 
    z-index: -1; 
    animation: nav-pop 0.3s ease-out;
}

.req-form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
}

.modal-kicker {
    font-size: 12px;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hub-quote-panel textarea.form-control {
    min-height: 118px;
    padding: 12px 14px;
    resize: vertical;
}

.hub-quote-panel input[type="file"].form-control {
    height: auto;
    min-height: 48px;
    padding: 10px 12px;
}

.req-upload-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #f8fafc;
    min-height: 80px;
}

.req-upload-preview-img {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    object-fit: cover;
    background: #e2e8f0;
    flex-shrink: 0;
}

.req-upload-preview-fallback {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: #eaf2fb;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.req-upload-preview-copy {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 2px;
}

.req-upload-preview-copy strong {
    font-size: 13px;
    line-height: 1.35;
    color: #0f172a;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.req-upload-preview-copy span {
    font-size: 12px;
    line-height: 1.45;
    color: #7f8da3;
}

.inquiry-detail-shell {
    max-width: 760px;
    padding: 32px;
    border-radius: 28px;
    background: white;
    position: relative;
}

.inquiry-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
}

.inquiry-detail-kicker,
.inquiry-detail-card-kicker {
    font-size: 12px;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.inquiry-detail-kicker {
    margin-bottom: 10px;
}

.inquiry-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-right: 52px;
}

.inquiry-detail-head-copy {
    min-width: 0;
    flex: 1;
}

.inquiry-detail-head-copy h2 {
    margin: 0 0 8px;
    color: #0f172a;
    line-height: 1.18;
}

.inquiry-detail-head-cta {
    margin-top: 0 !important;
    min-width: 176px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex-shrink: 0;
    width: auto !important;
    max-width: none;
    height: 48px;
    padding: 0 22px !important;
    border-radius: 14px !important;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    justify-self: end;
    align-self: center;
    box-shadow: 0 14px 28px -20px rgba(20, 184, 166, 0.9);
}

.inquiry-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
}

.inquiry-detail-meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #dce7f0;
    color: #52657a;
    font-size: 12px;
    font-weight: 700;
}

.inquiry-detail-card,
.inquiry-offer-card {
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 18px;
}

.inquiry-detail-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.inquiry-detail-desc {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

.inquiry-detail-attachment-img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    margin-top: 12px;
}

.inquiry-detail-link {
    display: inline-flex;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #0f766e;
    text-decoration: none;
}

.inquiry-offer-card {
    background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 100%);
    border: 1px solid #bae6fd;
}

.inquiry-offer-kicker {
    color: #0891b2;
}

.inquiry-offer-copy {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #164e63;
}

.inquiry-offer-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #164e63;
}

.inquiry-timeline {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.inquiry-timeline-empty {
    border: 1px dashed #d5e3f0;
    border-radius: 18px;
    padding: 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.72);
}

.inquiry-timeline-card {
    border-radius: 18px;
    border: 1px solid #dce7f0;
    background: white;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.inquiry-timeline-card.is-admin {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
    border-color: #c7dbff;
}

.inquiry-timeline-card.is-final {
    background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 100%);
    border-color: #bdeae3;
}

.inquiry-timeline-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.inquiry-timeline-role {
    font-size: 11px;
    font-weight: 900;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.inquiry-timeline-name {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 800;
    color: #12314c;
    line-height: 1.25;
}

.inquiry-timeline-time {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.inquiry-timeline-quote {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #d5e4ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
}

.inquiry-timeline-chip-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.inquiry-timeline-body {
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
}

.inquiry-timeline-summary {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.inquiry-timeline-note {
    margin-top: 10px;
    border-radius: 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.inquiry-timeline-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 900;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.inquiry-pickup-box {
    margin-top: 12px;
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #cdeae5;
    display: grid;
    gap: 6px;
}

.inquiry-pickup-box strong {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: #0f766e;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.inquiry-pickup-box span {
    font-size: 14px;
    line-height: 1.6;
    color: #164e63;
    word-break: break-word;
}

.inquiry-timeline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.inquiry-timeline-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #dbe5ef;
    color: #52657a;
    font-size: 12px;
    font-weight: 700;
}

.inquiry-timeline-pill-accent {
    background: #ffffff;
    border-color: #c9d8f5;
    color: #5b6780;
}

.inquiry-detail-actions {
    display: flex;
    justify-content: flex-end;
}

.inquiry-detail-close-btn {
    margin-top: 0 !important;
    background: #e2e8f0 !important;
    color: #1e293b !important;
}

.hub-quote-panel .form-control::placeholder,
#inquiry-detail-modal .form-control::placeholder,
#respond-modal .form-control::placeholder {
    color: #aeb8c6;
}
@keyframes nav-pop {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* -------------------------------------------------- */
/* Responsive Marketplace Shell */

.mobile-menu-btn,
.mobile-drawer,
.mobile-drawer-overlay,
#mobile-bottom-nav {
    display: none;
}

.mobile-logo-wordmark {
    display: none;
}

.content-area {
    min-width: 0;
    width: 100%;
}

.mobile-chip-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
}

.mobile-chip-row::-webkit-scrollbar {
    display: none;
}

.mobile-cat-chip {
    border: 1px solid #d7e3f2;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.2s ease;
}

.mobile-cat-chip.is-active,
.mobile-cat-chip:hover {
    background: #e8fbf8;
    color: var(--brand-primary);
    border-color: #a7f3d0;
}

@media (max-width: 1024px) {
    .top-utility {
        display: none;
    }

    header {
        padding: 12px 0 10px;
        box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    }

    .header-flex {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px 12px;
        align-items: center;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 1px solid #dbe5f1;
        border-radius: 16px;
        background: #fff;
        color: #334155;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(0.97);
    }

    .logo {
        justify-self: center;
        gap: 0;
    }

    .logo-box {
        width: 40px;
        height: 40px;
        background: transparent;
        border: 0;
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
    }

    .logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .brand-text {
        display: inline-flex;
        align-items: baseline;
        font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
        font-size: 42px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -2.2px;
    }

    .brand-lockup {
        display: flex;
        align-items: baseline;
        justify-content: center;
        line-height: 1;
        gap: 0;
    }

    .brand-lina {
        color: var(--logo-blue, #2d769a) !important;
    }

    .brand-kart {
        color: var(--logo-orange, #e9782d) !important;
    }

    .brand-dotcom {
        color: var(--logo-gray, #8b9199) !important;
        font-size: 19px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0;
        margin-left: 5px;
        writing-mode: vertical-rl;
        transform: rotate(180deg) translateY(2px);
    }

    #main-search-bar {
        align-items: center;
        height: 44px;
    }

    #main-search-bar .search-input,
    #main-search-bar .search-btn {
        box-sizing: border-box;
        height: 40px !important;
        min-height: 40px !important;
    }

    .header-actions {
        justify-self: end;
        gap: 14px;
    }

    #marketplace-header-actions {
        gap: 14px !important;
    }

    .action-item {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    .action-item span {
        display: none;
    }

    .action-item i {
        font-size: 22px;
    }

    .cart-tag {
        top: -2px;
        right: -2px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    #main-search-bar {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }

    .search-container {
        background: #fff;
        border: 1px solid #dbe5f1;
        border-radius: 18px;
        padding: 4px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .search-input {
        height: 48px;
        border: none;
        border-radius: 14px;
        padding: 0 16px;
        font-size: 15px;
        background: #f8fafc;
    }

    .search-btn {
        width: 52px;
        min-width: 52px;
        padding: 0;
        border-radius: 14px;
    }

    .search-btn span {
        display: none;
    }

    .suggestions-dropdown {
        width: 100%;
        border-top: 1px solid var(--border);
        top: calc(100% + 6px);
        border-radius: 18px;
    }

    .main-nav {
        display: none;
    }

    main {
        padding-bottom: 92px;
    }

    .layout-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 14px auto 20px;
    }

    .sidebar {
        display: none !important;
    }

    .mobile-cat-chips-container {
        display: block;
        margin-bottom: 14px;
    }

    .hero-banner {
        min-height: 200px;
        padding: 22px;
        border-radius: 24px;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 14px;
        margin-bottom: 18px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
    }

    .hero-text h1 {
        font-size: 24px !important;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .hero-text p {
        font-size: 14px !important;
        max-width: 28rem;
    }

    .post-req-btn {
        min-height: 46px;
        padding: 0 20px;
        border-radius: 14px;
        box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
    }

    .product-grid {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
        gap: 14px;
    }

    .p-card {
        border: 1px solid #e6edf5;
        border-radius: 20px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .p-img-box {
        height: 144px;
        background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    }

    .p-img {
        padding: 12px;
        object-fit: contain;
    }

    .p-info {
        padding: 12px;
        gap: 6px;
    }

    .p-category {
        font-size: 9px !important;
        letter-spacing: 0.8px;
    }

    .p-name {
        height: auto;
        min-height: 38px;
        font-size: 13px !important;
        line-height: 1.35;
    }

    .p-price {
        font-size: 17px !important;
        font-weight: 800;
    }

    .p-verified {
        font-size: 11px !important;
        margin: 2px 0 4px !important;
    }

    .p-actions-box button,
    .p-actions-box div {
        min-height: 42px;
        border-radius: 12px !important;
    }

    .mobile-drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.48);
        backdrop-filter: blur(4px);
        z-index: 2200;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100dvh;
        max-height: 100dvh;
        width: min(86vw, 340px);
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        z-index: 2300;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        box-shadow: 24px 0 48px rgba(15, 23, 42, 0.14);
        padding: 24px 18px 28px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    body.mobile-menu-open .mobile-drawer-overlay {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }

    body.mobile-menu-open .mobile-drawer {
        transform: translateX(0);
        display: flex;
    }

    body.mobile-menu-open #mobile-bottom-nav {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .mobile-drawer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-drawer-close {
        width: 40px;
        height: 40px;
        border: 1px solid #dbe5f1;
        border-radius: 14px;
        background: #fff;
        color: #475569;
        cursor: pointer;
    }

    .mobile-drawer-section-label {
        font-size: 12px;
        font-weight: 800;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-top: 6px;
    }

    .mobile-drawer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
        padding: 0 16px;
        border: 1px solid transparent;
        border-radius: 18px;
        background: transparent;
        color: #0f172a;
        font-size: 15px;
        font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.mobile-drawer-link span {
    flex: 1;
}

.mobile-drawer-link button,
.mobile-drawer-link[type="button"] {
    appearance: none;
}

.mobile-drawer-links {
    padding-top: 8px;
}

.mobile-drawer-links-secondary {
    padding-top: 2px;
}

.mobile-drawer-link:hover,
.mobile-drawer-link:active {
    background: #eff8ff;
    border-color: #d7e3f2;
}

    .mobile-drawer-link i {
        width: 18px;
        color: var(--brand-secondary);
    }

.mobile-drawer-help {
        margin-top: 10px;
        margin-bottom: 0;
        padding: 16px;
        border-radius: 20px;
        background: linear-gradient(135deg, #eff8ff 0%, #f0fdfa 100%);
        border: 1px solid #dbeafe;
        display: flex;
        flex-direction: column;
        gap: 4px;
        color: #475569;
        font-size: 13px;
    }

    .mobile-drawer-help-label {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.8px;
        color: #94a3b8;
        text-transform: uppercase;
    }

    .mobile-drawer-promo {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        margin-top: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, #f8fffe 0%, #eff8ff 100%);
        border: 1px solid #d9f3ef;
        color: #475569;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    .mobile-drawer-promo-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ecfdf5;
        color: var(--brand-primary);
        flex-shrink: 0;
        font-size: 18px;
    }

    .mobile-drawer-promo-copy {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
    }

    .mobile-drawer-promo-copy strong {
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
    }

    .mobile-drawer-promo-copy span {
        font-size: 13px;
        line-height: 1.5;
        color: #64748b;
    }

    .mobile-drawer-bottom-space {
        min-height: 140px;
        flex: 1 1 auto;
    }

    #mobile-bottom-nav {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(219, 229, 241, 0.88);
        border-radius: 24px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
        backdrop-filter: blur(18px);
        padding: 6px;
    }

    #mobile-bottom-nav > div {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }

    .nav-item-box {
        min-height: 58px;
        border: none;
        background: transparent;
        border-radius: 18px;
        appearance: none;
    }

    .nav-item-box span {
        font-size: 11px;
    }

    .sell-topbar {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 18px;
        overflow: hidden;
    }

    .sell-topbar > div:last-child {
        width: 100%;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px !important;
    }

    .sell-progress-shell,
    .sell-progress-track {
        width: 100% !important;
        min-width: 0;
    }

    .sell-secondary-btn {
        min-width: 112px;
        max-width: 128px;
        padding: 0 14px !important;
        white-space: nowrap;
    }

    #pane-hub {
        position: relative;
        padding: 0 0 96px !important;
        background: transparent;
        border-radius: 0;
    }

    #pane-hub::before {
        display: none;
    }

    .hub-topbar {
        margin-bottom: 18px;
    }

    .hub-topbar-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }

    .hub-hero-copy p {
        color: var(--text-muted);
        margin-top: 0;
        max-width: 660px;
    }

    .hub-hero-cta {
        min-width: 176px;
        min-height: 54px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .hub-quote-panel {
        position: relative;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        scroll-margin-top: 96px;
        transition: transform 0.2s ease;
    }

    .hub-quote-panel[hidden],
    #hub-inquiries-panel[hidden] {
        display: none !important;
    }

    .hub-quote-panel.is-attention .hub-create-card {
        border-color: rgba(20, 184, 166, 0.5);
        box-shadow: 0 18px 40px -18px rgba(20, 184, 166, 0.4);
        transform: translateY(-1px);
    }

    .hub-create-card,
    .hub-inquiries-card {
        padding: 28px !important;
        border-radius: 28px !important;
    }

    .hub-form-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
        gap: 28px;
        align-items: start;
    }

    .hub-form-main {
        display: grid;
        gap: 16px;
    }

    .hub-form-side {
        display: grid;
        gap: 16px;
        align-content: start;
    }

    #pane-hub .sell-field-block label {
        display: block;
        margin-bottom: 10px;
        font-size: 13px;
        font-weight: 800;
        color: #334155;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #pane-hub .form-control {
        border-radius: 14px !important;
        border: 1px solid #dbe4f0 !important;
        min-height: 46px;
        padding: 0 16px !important;
        font-size: 14px;
        box-shadow: none !important;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    #pane-hub textarea.form-control {
        min-height: 176px;
        height: auto !important;
        padding: 14px !important;
        resize: vertical;
    }

    #pane-hub .form-control:focus {
        border-color: #14b8a6 !important;
        box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08) !important;
    }

    .hub-upload-box {
        min-height: 118px;
        align-items: flex-start;
    }

    .hub-upload-note {
        margin-top: 10px;
        font-size: 13px;
        color: #64748b;
        line-height: 1.55;
    }

    .hub-form-actions {
        margin-top: 18px;
    }

    .hub-quote-submit {
        min-width: 220px;
    }

    .hub-inquiries-card {
        min-height: 320px;
    }

    #hub-list {
        gap: 14px !important;
    }

    .hub-empty-state {
        text-align: center;
        padding: 58px 28px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
        border-radius: 24px;
        border: 1px dashed #cfe0ee;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
    }

    .hub-empty-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto 16px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8fb4cb;
        background: linear-gradient(180deg, #eff8ff 0%, #dbeafe 100%);
        border: 1px solid #d6e8f6;
        font-size: 28px;
    }

    .hub-empty-title {
        font-size: 19px;
        font-weight: 800;
        color: #15304b;
    }

    .hub-empty-copy {
        font-size: 14px;
        color: #6b7f95;
        margin-top: 6px;
    }

    .hub-request-card {
        padding: 18px !important;
        border-radius: 22px !important;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05) !important;
        border: 1px solid #e4edf5 !important;
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    }

    .hub-request-shell {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hub-request-main {
        display: flex;
        gap: 14px;
        flex: 1;
        min-width: min(360px, 100%);
    }

    .hub-request-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: linear-gradient(180deg, #eef8ff 0%, #dbeafe 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
        flex-shrink: 0;
        font-size: 18px;
        border: 1px solid #d5e7fb;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .hub-request-copy {
        flex: 1;
        min-width: 0;
    }

    .hub-request-title-row {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 6px;
    }

    .hub-request-title {
        font-weight: 800;
        font-size: 17px;
        color: #15304b;
        line-height: 1.28;
        min-width: 0;
    }

    .hub-request-status {
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 999px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.35px;
        border: 1px solid transparent;
    }

    .hub-request-desc {
        font-size: 13px;
        color: #5d7289;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hub-offer-card {
        margin-top: 12px;
        padding: 12px 14px;
        border-radius: 16px;
        background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 100%);
        border: 1px solid #c8f1ef;
        color: #155e75;
        font-size: 13px;
        line-height: 1.55;
    }

    .hub-offer-card strong {
        display: block;
        color: #0f172a;
        margin-bottom: 4px;
    }

    .hub-request-primary,
    .hub-request-secondary {
        width: fit-content;
        cursor: pointer;
        flex-shrink: 0;
        font-weight: 800;
        font-size: 13px;
    }

    .hub-request-primary {
        height: 42px;
        padding: 0 18px;
        border-radius: 13px;
        border: none;
        background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
        color: white;
        box-shadow: 0 12px 24px -16px rgba(37, 99, 235, 0.7);
    }

    .hub-request-secondary {
        height: 38px;
        padding: 0 14px;
        border-radius: 11px;
        border: 1px solid #d8e3ee;
        background: #f8fafc;
        color: #1e293b;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
    }

    .hub-request-primary:hover,
    .hub-request-secondary:hover {
        transform: translateY(-1px);
    }

    .hub-request-primary:hover {
        box-shadow: 0 16px 28px -18px rgba(37, 99, 235, 0.8);
    }

    .hub-request-secondary:hover {
        border-color: #bfd3e5;
        background: #ffffff;
    }

    .hub-request-meta {
        display: flex;
        align-items: center;
        gap: 8px !important;
        color: #94a3b8;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .hub-meta-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(248, 250, 252, 0.9);
        border: 1px solid #dce7f0;
        color: #52657a;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
    }

    .hub-meta-pill i {
        color: #94a3b8;
        font-size: 11px;
    }

    .hub-request-footer {
        flex-direction: column;
        align-items: stretch !important;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        border-top: 1px solid #eef4f8;
        padding-top: 12px;
        flex-wrap: wrap;
    }

    @media (max-width: 767px) {
        #pane-hub {
            padding-top: 0;
            padding-bottom: 156px !important;
        }

        .hub-topbar {
            display: block !important;
            margin-bottom: 14px;
            padding: 16px !important;
            border-radius: 24px !important;
        }

        .hub-topbar .sell-kicker {
            margin-bottom: 6px;
        }

        .hub-topbar .sell-page-title {
            max-width: none;
            font-size: 18px !important;
            line-height: 1.08 !important;
            margin-bottom: 8px;
        }

        .hub-topbar-actions {
            width: 100%;
            justify-content: stretch;
            margin-top: 12px;
        }

        .hub-hero-copy p {
            max-width: none;
            font-size: 13px;
            line-height: 1.5;
        }

        .hub-hero-cta {
            width: 100% !important;
            min-width: 0;
            min-height: 48px;
            padding: 0 16px !important;
            border-radius: 16px !important;
            white-space: normal;
        }

        .hub-create-card,
        .hub-inquiries-card {
            padding: 14px !important;
            border-radius: 22px !important;
        }

        .hub-inquiries-card {
            padding: 0 !important;
            border: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            min-height: 0;
        }

        .hub-form-layout {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        #quote-request-panel .sell-form-grid,
        #quote-request-panel .sell-form-grid-2 {
            grid-template-columns: 1fr !important;
            gap: 14px;
        }

        #quote-request-panel .sell-field-block,
        #quote-request-panel .sell-field-block-full {
            width: 100%;
        }

        #quote-request-panel .sell-field-block label {
            margin-bottom: 6px;
            font-size: 12px;
            line-height: 1.3;
            word-break: normal;
        }

        #quote-request-panel .form-control {
            width: 100%;
            min-height: 46px;
        }

        #quote-request-panel textarea.form-control {
            min-height: 120px;
        }

        #quote-request-panel .hub-form-main,
        #quote-request-panel .hub-form-side {
            gap: 14px;
        }

        .hub-upload-box {
            min-height: 88px;
        }

        #quote-request-panel .hub-upload-box {
            min-height: 92px;
            padding: 14px;
        }

        #quote-request-panel .sell-upload-copy strong {
            font-size: 15px;
        }

        #quote-request-panel .sell-upload-copy span,
        #quote-request-panel .hub-upload-note {
            font-size: 12px;
            line-height: 1.45;
        }

        #quote-request-panel .req-upload-preview {
            padding: 12px;
            border-radius: 18px;
        }

        .hub-form-actions {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .hub-quote-submit {
            width: 100%;
            min-width: 0;
        }

        .hub-request-card {
            padding: 14px !important;
            border-radius: 22px !important;
            gap: 10px !important;
        }

        .hub-request-shell {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }

        .hub-request-main {
            min-width: 0;
            gap: 10px;
            align-items: flex-start;
        }

        .hub-request-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 15px;
        }

        .hub-request-title {
            font-size: 14px;
            line-height: 1.25;
        }

        .hub-request-title-row {
            gap: 6px;
            margin-bottom: 6px;
        }

        .hub-request-desc {
            font-size: 12px;
            line-height: 1.5;
        }

        .hub-request-primary,
        .hub-request-secondary {
            width: 100%;
            min-width: 0;
            justify-content: center;
            min-height: 42px;
            border-radius: 13px;
            align-self: stretch;
        }

        .hub-request-meta {
            width: 100%;
            gap: 6px !important;
        }

        .hub-meta-pill {
            min-height: 24px;
            padding: 0 8px;
            font-size: 10px;
        }

        .hub-request-footer {
            margin-top: 4px;
            gap: 8px;
            padding-top: 8px;
            align-items: stretch !important;
        }

        .hub-offer-card {
            margin-top: 10px;
            padding: 10px 12px;
            font-size: 12px;
            line-height: 1.5;
        }
    }

    .modal-kicker {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .req-upload-preview {
        align-items: flex-start;
        padding: 10px;
    }

    .req-upload-preview-img {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .req-upload-preview-fallback {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        font-size: 20px;
    }

    #pane-services {
        padding: 26px 0 96px !important;
    }

    #pane-services .service-wizard-container {
        width: 100%;
        border: 0;
        border-radius: 0;
        padding: 8px 14px 18px;
        box-shadow: none;
        background: #fff;
    }

    #pane-services .step-progress-wrapper {
        display: none;
    }

    #pane-services .service-wizard-top {
        display: block;
        margin: 0 0 14px;
    }

    #pane-services .service-wizard-top .sell-kicker,
    #pane-services .service-wizard-top .wizard-title-main,
    #pane-services .service-wizard-subcopy {
        display: none;
    }

    #pane-services .service-quick-note {
        margin: 0 0 18px;
        font-size: 13px;
        line-height: 1.4;
        color: #64748b;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #service-step-2 {
        padding: 0;
    }

    #service-step-2 .wizard-center-header {
        margin: 4px 0 14px !important;
        text-align: left;
    }

    #service-step-2 .wizard-subtitle-sub {
        display: none;
    }

    #service-step-2 .wizard-title-main {
        font-size: 20px !important;
        line-height: 1.2;
        letter-spacing: 0;
        margin-bottom: 6px;
    }

    #service-step-2 .service-step-copy {
        font-size: 13px;
        line-height: 1.45;
        max-width: none;
    }

    #service-step-2 .service-selected-strip {
        padding: 12px 14px;
        border-radius: 14px;
        background: #f8fafc;
        gap: 10px;
    }

    #service-step-2 .service-selected-label,
    #service-step-2 .counter-label,
    #service-step-2 .expertise-label {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    #service-step-2 .service-selected-strip strong {
        font-size: 15px;
        text-align: right;
        max-width: 52%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #service-step-2 .service-detail-grid,
    #service-step-2 .service-extra-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    #service-step-2 .counter-box,
    #service-step-2 .service-duration-card,
    #service-step-2 .service-field-card {
        border-radius: 14px;
        padding: 12px;
        background: #fbfcfe;
    }

    #service-step-2 .counter-box {
        min-height: 126px;
        justify-content: space-between;
    }

    #service-step-2 .counter-controls,
    #service-step-2 .service-duration-controls {
        padding: 0;
        gap: 8px;
        margin: 8px 0 0;
    }

    #service-step-2 .counter-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
        background: #fff;
    }

    #service-step-2 .counter-value {
        min-width: 30px;
        font-size: 30px;
        line-height: 1;
    }

    #service-step-2 .service-duration-toggle {
        gap: 8px;
        margin-top: 10px;
    }

    #service-step-2 .duration-option {
        height: 36px;
        border-radius: 10px;
        font-size: 12px;
    }

    #service-step-2 .form-control {
        min-height: 42px;
        height: 42px;
        border-radius: 10px;
        padding: 0 10px;
        font-size: 14px;
    }

    #service-step-2 .service-expertise-wrap {
        margin-top: 14px;
    }

    #service-step-2 .expertise-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 8px;
    }

    #service-step-2 .exp-option {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        padding: 10px 8px;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.2;
    }

    #service-step-2 .wizard-action-footer {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 12px;
        margin-top: 16px;
        align-items: center;
    }

    #service-step-2 .btn-wizard-back-text {
        min-height: 46px;
        justify-content: center;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: #fff;
        color: #64748b;
    }

    #service-step-2 .btn-wizard-next-premium {
        width: 100%;
        height: 48px;
        justify-content: center;
        border-radius: 12px;
        padding: 0 16px;
        font-size: 14px;
    }

    #service-step-3 {
        padding: 0;
    }

    #service-step-3 .wizard-center-header {
        margin: 4px 0 14px !important;
        text-align: left;
    }

    #service-step-3 .wizard-subtitle-sub {
        font-size: 10px;
        letter-spacing: 0.6px;
        margin-bottom: 4px;
    }

    #service-step-3 .wizard-title-main {
        font-size: 20px !important;
        line-height: 1.2;
        letter-spacing: 0;
        margin-bottom: 5px;
    }

    #service-step-3 .service-step-copy {
        font-size: 13px;
        line-height: 1.35;
        max-width: none;
    }

    #service-step-3 .service-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    #service-step-3 .service-form-field {
        min-width: 0;
    }

    #service-step-3 .counter-label {
        font-size: 10px;
        letter-spacing: 0.6px;
        margin-bottom: 6px;
    }

    #service-step-3 .form-control {
        min-height: 42px;
        height: 42px;
        border-radius: 10px;
        padding: 0 12px;
        font-size: 14px;
    }

    #service-step-3 .service-notes-box {
        min-height: 86px !important;
        height: 86px !important;
        padding: 12px !important;
        line-height: 1.35;
        resize: none;
    }

    #service-step-3 .service-request-summary {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 10px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    #service-step-3 .service-request-summary div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    #service-step-3 .service-request-summary span {
        margin: 0;
        font-size: 10px;
    }

    #service-step-3 .service-request-summary strong {
        font-size: 13px;
        line-height: 1.2;
        text-align: right;
        min-width: 0;
    }

    #service-step-3 .wizard-action-footer {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 12px;
        margin-top: 14px;
        align-items: center;
    }

    #service-step-3 .btn-wizard-back-text {
        min-height: 46px;
        justify-content: center;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: #fff;
        color: #64748b;
    }

    #service-step-3 .btn-wizard-next-premium {
        width: 100%;
        height: 48px;
        justify-content: center;
        border-radius: 12px;
        padding: 0 14px;
        font-size: 13px;
    }

    #pane-works {
        padding: 12px 14px 96px !important;
    }

    .works-hero {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 174px;
        gap: 6px 16px;
        align-items: start;
        margin-bottom: 12px;
    }

    .works-title-block {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .works-kicker {
        font-size: 11px;
        letter-spacing: 0.7px;
        margin-bottom: 6px;
    }

    .works-hero h2 {
        width: auto;
        max-width: 16ch;
        font-size: 20px !important;
        line-height: 1.12;
        margin-bottom: 0;
    }

    .works-copy {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
        line-height: 1.45;
        color: #4f6690;
        max-width: none;
        margin: 0;
    }

    .works-post-btn {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: end;
        width: 174px !important;
        min-width: 174px;
        height: 52px !important;
        padding: 0 12px !important;
        font-size: 13px;
        border-radius: 4px !important;
    }

    .works-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 8px;
    }

    .works-grid > div {
        padding: 18px !important;
        border-radius: 14px !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
    }

    .works-grid h3 {
        font-size: 19px !important;
        line-height: 1.24 !important;
    }

    .works-grid > div > div:first-child {
        margin-bottom: 14px !important;
    }

    .works-grid > div > div:nth-child(2) {
        margin-bottom: 16px !important;
        padding: 12px 0 !important;
        gap: 28px !important;
    }

    .works-grid button {
        height: 48px !important;
        border-radius: 8px !important;
        font-size: 15px !important;
    }
}

/* -------------------------------------------------- */
/* Enquiry Hub */

#pane-hub {
    position: relative;
    padding: 0 0 96px !important;
    background: transparent;
    border-radius: 0;
}

#pane-hub::before {
    display: none;
}

.hub-topbar {
    margin-bottom: 18px;
    display: block;
}

.hub-hero-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hub-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.hub-hero-copy p {
    color: var(--text-muted);
    margin-top: 0;
    max-width: 660px;
}

#pane-hub .hub-topbar > .hub-hero-copy:last-child {
    display: block;
    margin-top: 10px;
}

.hub-hero-cta {
    min-width: 176px;
    min-height: 54px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hub-quote-panel {
    position: relative;
    margin: 0 0 22px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    scroll-margin-top: 96px;
    transition: transform 0.2s ease;
}

.hub-quote-panel[hidden],
#hub-inquiries-panel[hidden] {
    display: none !important;
}

.hub-quote-panel.is-attention .hub-create-card {
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 18px 40px -18px rgba(20, 184, 166, 0.4);
    transform: translateY(-1px);
}

.hub-create-card,
.hub-inquiries-card {
    padding: 28px !important;
    border-radius: 28px !important;
}

.hub-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.82fr);
    gap: 28px;
    align-items: start;
}

.hub-form-main {
    display: grid;
    gap: 16px;
}

.hub-form-side {
    display: grid;
    gap: 16px;
    align-content: start;
}

#pane-hub .sell-field-block label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#pane-hub .form-control {
    border-radius: 14px !important;
    border: 1px solid #dbe4f0 !important;
    min-height: 46px;
    padding: 0 16px !important;
    font-size: 14px;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#pane-hub textarea.form-control {
    min-height: 176px;
    height: auto !important;
    padding: 14px !important;
    resize: vertical;
}

#pane-hub .form-control:focus {
    border-color: #14b8a6 !important;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08) !important;
}

.hub-upload-box {
    min-height: 118px;
    align-items: flex-start;
}

.hub-upload-note {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
}

.hub-form-actions {
    margin-top: 18px;
}

.hub-quote-submit {
    min-width: 220px;
}

.hub-inquiries-card {
    min-height: 320px;
}

#hub-list {
    gap: 16px !important;
}

.hub-empty-state {
    text-align: center;
    padding: 58px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border-radius: 24px;
    border: 1px dashed #cfe0ee;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
}

.hub-empty-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fb4cb;
    background: linear-gradient(180deg, #eff8ff 0%, #dbeafe 100%);
    border: 1px solid #d6e8f6;
    font-size: 28px;
}

.hub-empty-title {
    font-size: 19px;
    font-weight: 800;
    color: #15304b;
}

.hub-empty-copy {
    font-size: 14px;
    color: #6b7f95;
    margin-top: 6px;
}

.hub-request-card {
    padding: 20px !important;
    border-radius: 22px !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05) !important;
    border: 1px solid #e4edf5 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

.hub-request-shell {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.hub-request-main {
    display: flex;
    gap: 14px;
    flex: 1;
    min-width: min(360px, 100%);
}

.hub-request-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef8ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
    font-size: 18px;
    border: 1px solid #d5e7fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hub-request-copy {
    flex: 1;
    min-width: 0;
}

.hub-request-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hub-request-title {
    font-weight: 800;
    font-size: 18px;
    color: #15304b;
    line-height: 1.28;
    min-width: 0;
}

.hub-request-status {
    font-size: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    border: 1px solid transparent;
}

.hub-request-desc {
    font-size: 14px;
    color: #5d7289;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-offer-card {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 100%);
    border: 1px solid #c8f1ef;
    color: #155e75;
    font-size: 13px;
    line-height: 1.55;
}

.hub-offer-card strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

.hub-request-primary,
.hub-request-secondary {
    width: fit-content;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 13px;
}

.hub-request-primary {
    height: 42px;
    padding: 0 18px;
    border-radius: 13px;
    border: none;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 12px 24px -16px rgba(37, 99, 235, 0.7);
}

.hub-request-secondary {
    height: 38px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid #d8e3ee;
    background: #f8fafc;
    color: #1e293b;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.hub-request-primary:hover,
.hub-request-secondary:hover {
    transform: translateY(-1px);
}

.hub-request-primary:hover {
    box-shadow: 0 16px 28px -18px rgba(37, 99, 235, 0.8);
}

.hub-request-secondary:hover {
    border-color: #bfd3e5;
    background: #ffffff;
}

.hub-request-meta {
    display: flex;
    align-items: center;
    gap: 8px !important;
    color: #94a3b8;
    font-size: 12px;
    flex-wrap: wrap;
}

.hub-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid #dce7f0;
    color: #52657a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.hub-meta-pill i {
    color: #94a3b8;
    font-size: 11px;
}

.hub-request-footer {
    flex-direction: column;
    align-items: stretch !important;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #eef4f8;
    padding-top: 14px;
    margin-top: 14px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .inner-content {
        padding: 0 14px;
    }

    .logo .brand-text {
        display: none;
    }

    .site-logo .brand-text {
        display: inline-flex;
        font-size: 30px;
        letter-spacing: -1.5px;
    }

    .site-logo .brand-dotcom {
        font-size: 14px;
        margin-left: 4px;
    }

    .site-logo .mobile-logo-wordmark {
        display: none !important;
    }

    .logo {
        gap: 0;
    }

    .header-flex {
        grid-template-columns: auto 1fr auto;
    }

    .hero-banner {
        min-height: 176px;
        padding: 20px 18px;
    }

    .hero-text h1 {
        font-size: 21px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .p-img-box {
        height: 132px;
    }

    .p-info {
        padding: 11px;
    }

    .p-name {
        min-height: 36px;
    }

    .content-area > div[style*="border-left: 4px solid"] {
        margin: 18px 0 14px !important;
        padding-left: 10px !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .inner-content {
        padding: 0 18px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .p-img-box {
        height: 156px;
    }

    .hero-banner {
        min-height: 220px;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-btn,
    .mobile-drawer,
    .mobile-drawer-overlay,
    #mobile-bottom-nav {
        display: none !important;
    }

    #pane-hub .hub-topbar {
        display: block !important;
    }

    #pane-hub .hub-hero-head {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 24px !important;
    }

    #pane-hub .hub-hero-copy {
        flex: 1 1 auto;
        min-width: 0;
    }

    #pane-hub .hub-hero-copy p {
        max-width: none !important;
    }

    #pane-hub .hub-topbar-actions {
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: auto !important;
        min-width: 0 !important;
    }

    #pane-hub .hub-topbar > .hub-hero-copy:last-child {
        margin-top: 8px !important;
        max-width: 760px;
    }

    #pane-hub .hub-hero-cta {
        width: fit-content !important;
        min-width: 190px;
        max-width: 220px;
        min-height: 48px;
        margin-top: 0 !important;
        padding: 0 24px !important;
        justify-self: auto !important;
        white-space: nowrap;
    }
}

/* -------------------------------------------------- */
/* Mobile Fine Tuning Layer */

@media (max-width: 1024px) {
    body {
        background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
    }

    .view-pane {
        padding-bottom: 8px;
    }

    .sell-topbar {
        margin: 0 auto 10px;
        padding: 14px 16px 12px;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid #e4edf7;
        border-radius: 22px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
        backdrop-filter: blur(14px);
    }

    .sell-page-title {
        max-width: 18ch;
        font-size: 22px !important;
        line-height: 1.08 !important;
        margin-bottom: 4px;
        letter-spacing: -0.03em;
    }

    .sell-page-subtitle {
        max-width: 34ch;
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .sell-secondary-btn {
        width: 100%;
        min-height: 46px;
        border-radius: 16px;
    }

    .sell-create-card {
        padding: 16px !important;
        border-radius: 22px !important;
    }

    .sell-create-header {
        margin-bottom: 12px;
        gap: 10px;
    }

    .sell-create-header h3 {
        font-size: 18px !important;
        line-height: 1.15 !important;
        margin-bottom: 4px;
    }

    .sell-create-header p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .sell-kicker {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .sell-step-panel {
        gap: 14px;
    }

    .sell-field-block label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .sell-condition-btn {
        min-height: 46px;
        font-size: 14px;
        padding: 0 16px;
    }

    .sell-inline-hints {
        gap: 8px;
        margin-top: 8px;
    }

    .sell-inline-hints button {
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
    }

    .sell-upload-box {
        min-height: 82px;
        padding: 12px 14px;
        border-radius: 18px;
        gap: 10px;
    }

    .sell-upload-copy strong {
        font-size: 15px;
    }

    .sell-upload-copy span {
        font-size: 12px;
        line-height: 1.45;
    }

    #pane-sell .img-preview-grid {
        grid-template-columns: repeat(auto-fill, 80px);
        gap: 14px;
    }

    .orders-tab-switcher {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 6px;
        gap: 6px;
        border-radius: 22px;
        scrollbar-width: none;
    }

    .orders-tab-switcher::-webkit-scrollbar {
        display: none;
    }

    .orders-tab-switcher .tab-btn {
        flex: 0 0 auto;
        min-width: 108px;
        padding: 11px 14px;
        font-size: 13px;
        line-height: 1.2;
    }

    .mobile-order-card,
    .mobile-booking-card {
        border-radius: 20px !important;
        padding: 16px !important;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05) !important;
    }

    .mobile-order-head,
    .mobile-booking-head {
        align-items: flex-start !important;
        gap: 8px;
        flex-direction: column;
    }

    .mobile-order-meta-row {
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .mobile-order-number {
        font-size: 12px !important;
        line-height: 1.35;
        word-break: break-word;
    }

    .mobile-order-date,
    .mobile-booking-date {
        font-size: 11px !important;
    }

    .mobile-order-type,
    .mobile-booking-status {
        align-self: flex-start;
    }

    .mobile-order-body {
        flex-direction: column;
        gap: 14px !important;
    }

    .mobile-order-manifest {
        text-align: left !important;
    }

    .mobile-order-items > div {
        justify-content: space-between !important;
        text-align: left;
    }

    .mobile-order-footer {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 14px !important;
    }

    .mobile-order-note {
        align-items: flex-start !important;
    }

    .mobile-order-note-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .mobile-order-note-label {
        font-size: 10px !important;
    }

    .mobile-order-note-text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .mobile-order-total {
        text-align: left !important;
        font-size: 16px !important;
        padding-top: 8px;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-booking-grid {
        gap: 16px !important;
    }

    .mobile-booking-grid > div {
        min-width: calc(50% - 8px);
    }

    .product-detail-sheet {
        width: min(100%, 420px) !important;
        max-width: none !important;
        margin: auto 0 0 !important;
        border-radius: 28px 28px 0 0 !important;
        animation: mobile-sheet-up 0.24s ease;
    }

    .product-detail-layout {
        flex-direction: column !important;
        height: auto !important;
        max-height: 88vh;
        overflow-y: auto;
    }

    .product-detail-media {
        min-height: 180px;
        max-height: 240px;
        border-bottom: 1px solid #eef2f6;
    }

    #prod-detail-hero {
        width: 100%;
        height: 180px;
        padding: 20px !important;
    }

    #prod-detail-gallery {
        position: static !important;
        padding: 0 16px 14px;
        justify-content: flex-start !important;
        overflow-x: auto;
        width: 100% !important;
    }

    .product-detail-copy {
        padding: 18px 18px 20px !important;
    }

    .product-detail-close {
        top: 14px !important;
        right: 14px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 14px !important;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }

    #prod-detail-cat {
        font-size: 11px !important;
        letter-spacing: 1.2px !important;
    }

    #prod-detail-name {
        font-size: 22px !important;
        line-height: 1.15 !important;
        margin: 8px 0 10px !important;
        max-width: 11ch;
    }

    #prod-detail-price {
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }

    #prod-detail-desc {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }

    #prod-detail-actions {
        width: 100%;
    }

    #prod-detail-actions .btn-primary,
    #prod-detail-actions button,
    #prod-detail-actions > div {
        min-height: 48px !important;
        border-radius: 14px !important;
    }
}

@media (max-width: 767px) {
    .logo:not(.site-logo) > div:last-child {
        display: none !important;
    }

    .logo {
        min-width: 46px;
        justify-self: center;
        gap: 8px !important;
    }

    .logo-box {
        width: 38px;
        height: 38px;
    }

    .mobile-logo-wordmark {
        display: none;
        font-size: 16px;
        font-weight: 800;
        color: var(--brand-secondary);
        letter-spacing: -0.03em;
        line-height: 1;
    }

    .mobile-drawer {
        width: min(82vw, 318px);
        padding: 18px 14px calc(34px + env(safe-area-inset-bottom)) 14px;
        gap: 14px;
    }

    .mobile-drawer-link {
        min-height: 48px;
        padding: 0 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .mobile-drawer-help {
        padding: 14px;
        border-radius: 18px;
        margin-bottom: 0;
    }

    .mobile-drawer-bottom-space {
        min-height: 180px;
    }

    .search-container {
        padding: 3px;
        border-radius: 16px;
    }

    .search-input {
        height: 44px;
        font-size: 14px;
    }

    .search-btn {
        width: 48px;
        min-width: 48px;
        border-radius: 13px;
    }

    .hero-banner {
        min-height: 158px;
        padding: 16px;
        gap: 12px;
        border-radius: 22px;
    }

    .hero-text h1 {
        font-size: 19px !important;
        max-width: 10ch;
    }

    .hero-text p {
        font-size: 13px !important;
        max-width: 24ch;
    }

    .post-req-btn {
        min-height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }

    .mobile-cat-chips-container {
        margin-bottom: 10px;
    }

    .mobile-cat-chip {
        min-height: 38px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .sell-topbar {
        padding: 14px;
        gap: 12px;
    }

    .sell-page-title {
        font-size: 20px !important;
        max-width: 13ch;
    }

    .sell-page-subtitle {
        font-size: 13px !important;
        max-width: 28ch;
    }

    .sell-create-card {
        padding: 16px !important;
    }

    #pane-sell .img-preview-grid {
        gap: 14px 12px;
    }

    .sell-create-header h3 {
        font-size: 17px !important;
    }

    .orders-tab-switcher .tab-btn {
        min-width: 84px;
        padding: 10px 10px;
        font-size: 11px;
    }

    .mobile-order-card,
    .mobile-booking-card {
        padding: 14px !important;
        border-radius: 18px !important;
        border: 1px solid #e6edf5 !important;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04) !important;
    }

    .mobile-order-head {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    .mobile-order-meta-row {
        width: 100%;
    }

    .mobile-order-number {
        font-size: 11px !important;
        max-width: 14ch;
    }

    .mobile-order-date,
    .mobile-order-state {
        font-size: 10px !important;
    }

    .mobile-order-type {
        font-size: 11px !important;
        color: #64748b !important;
        font-weight: 800 !important;
        text-transform: uppercase;
    }

    .mobile-order-body {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .mobile-order-address > div:last-child,
    .mobile-order-items {
        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .mobile-order-address > div:first-child,
    .mobile-order-manifest > div:first-child {
        color: #94a3b8 !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: 0.7px;
        margin-bottom: 6px !important;
        text-transform: uppercase;
    }

    .mobile-order-address i {
        color: #94a3b8 !important;
        margin-right: 6px !important;
    }

    .mobile-order-items > div {
        gap: 10px !important;
    }

    .mobile-order-footer {
        background: #ffffff !important;
        border: 0 !important;
        border-top: 1px solid #eef2f7 !important;
        border-radius: 0 !important;
        padding: 12px 0 0 !important;
        gap: 8px !important;
        box-shadow: none !important;
    }

    .mobile-order-note {
        gap: 0 !important;
    }

    .mobile-order-note-icon,
    .mobile-order-note-label {
        display: none !important;
    }

    .mobile-order-note-copy {
        width: 100%;
    }

    .mobile-order-note-text {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #64748b !important;
        background: transparent !important;
    }

    .mobile-order-total {
        font-size: 14px !important;
        font-weight: 900 !important;
        padding-top: 8px;
        border-top: 0;
        color: #0f172a !important;
    }

    #mobile-bottom-nav {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 5px;
        border-radius: 22px;
    }

    .nav-item-box {
        min-height: 54px;
        gap: 3px;
    }

    .nav-item-box i {
        font-size: 18px;
    }

    .nav-item-box span {
        font-size: 10px;
    }
}

@keyframes mobile-sheet-up {
    from {
        transform: translateY(32px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* orders + engagement styles moved to orders.css and engagement.css */

#pane-explore .hero-banner,
#pane-explore .hero-banner-overlay,
#pane-explore .hero-text,
#pane-explore .hero-eyebrow,
#pane-explore .hero-cta {
    display: none !important;
}

#pane-explore .content-area {
    padding-top: 2px;
    width: 100%;
}

#pane-explore .hero-text p {
    margin: 0;
    max-width: 220px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    line-height: 1.3;
}

#pane-explore .post-req-btn {
    position: relative;
    z-index: 1;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 10px;
    background: #f97316;
    border: 0;
    box-shadow: 0 16px 28px -18px rgba(249, 115, 22, 0.8);
    text-transform: none;
    font-size: 10px;
    font-weight: 800;
}

@media (min-width: 1025px) {
    :root {
        --container-width: 1160px;
    }

    .top-utility {
        height: 32px;
        font-size: 11px;
    }

    header {
        padding: 12px 0;
    }

    .inner-content {
        padding: 0 16px;
    }

    .header-flex {
        gap: 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .view-pane {
        padding-bottom: 0;
    }

    .hero-banner {
        padding: 24px;
        min-height: 180px;
    }

    .hero-text h1 {
        font-size: 30px;
        line-height: 1.08;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .stat-card,
    .inquiry-card,
    .cart-summary-card {
        padding: 18px !important;
    }

    .sell-topbar,
    .sell-form-wrap {
        max-width: var(--container-width);
    }

    .sell-topbar {
        margin-bottom: 8px;
        padding: 12px 14px 10px;
    }

    .sell-page-title {
        max-width: 100%;
        font-size: 24px !important;
        margin-bottom: 4px;
    }

    .sell-page-subtitle {
        max-width: 42ch;
        font-size: 13px !important;
    }

    .sell-secondary-btn {
        min-height: 42px;
        min-width: 132px;
        padding: 0 16px;
    }

    .sell-create-card {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .sell-create-header h3 {
        font-size: 17px !important;
    }

    .sell-create-header p {
        font-size: 12px !important;
    }

    .sell-progress-shell {
        width: 180px;
    }

    .sell-step-panel {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 24px 40px;
        align-items: start;
    }

    .sell-step-panel > div {
        grid-column: 1;
    }

    .sell-step-panel > div:last-child {
        grid-column: 2;
        grid-row: 1 / 5;
    }

    .sell-field-block label {
        margin-bottom: 5px;
    }

    #pane-sell .form-control {
        min-height: 46px;
        font-size: 14px;
    }

    #pane-sell textarea.form-control,
    .sell-description-box {
        min-height: 104px !important;
    }

    .sell-condition-toggle {
        gap: 10px;
    }

    .sell-condition-btn {
        height: 46px;
        font-size: 13px;
    }

    .sell-inline-hints {
        margin-top: 6px;
    }

    .sell-inline-hints-tight button {
        height: 30px;
        font-size: 11px;
    }

    .sell-upload-box {
        min-height: 74px;
        padding: 12px 14px;
    }

    .sell-upload-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 18px;
    }

    .sell-upload-copy strong {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .sell-upload-copy span {
        font-size: 11px;
        line-height: 1.35;
    }

    .sell-form-actions {
        margin-top: 12px;
    }

    .sell-back-btn,
    .sell-submit-btn {
        height: 44px !important;
    }

    .sell-submit-btn {
        min-width: 176px;
    }
}

/* Final marketplace grid guard: keep listings from collapsing during resize/zoom. */
#pane-explore .layout-grid,
#pane-explore .content-area,
#explore-grid.product-grid {
    width: 100%;
    max-width: none;
}

#pane-explore .content-area,
#explore-grid.product-grid {
    justify-self: stretch;
    align-self: stretch;
}

@media (max-width: 767px) {
    #explore-grid.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    main > .inner-content,
    #pane-explore,
    #pane-explore .layout-grid,
    #pane-explore .content-area {
        width: 100% !important;
        max-width: none !important;
    }

    #pane-explore .layout-grid {
        display: block !important;
    }

    #pane-explore .content-area {
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
    }

    #explore-grid.product-grid {
        width: 100% !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    #explore-grid.product-grid .p-card {
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (min-width: 1025px) {
    #explore-grid.product-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    }
}

/* Production polish: keep the public storefront white and product cards compact. */
html,
body {
    background: #ffffff !important;
}

body,
button,
input,
select,
textarea {
    font-family: Roboto, Arial, sans-serif !important;
    letter-spacing: 0;
}

body {
    font-size: 14px;
    line-height: 1.42;
}

.password-field-wrap {
    position: relative;
}

.password-field-wrap .form-control {
    padding-right: 46px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth-card .btn-primary,
#reg-step1-form .btn-primary,
#reset-step1-form .btn-primary {
    width: 100%;
    box-sizing: border-box;
}

#msg91-captcha {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#msg91-captcha iframe,
#msg91-captcha > div {
    max-width: 100% !important;
}

h1,
h2,
h3,
.wizard-title-main,
.sell-page-title,
.p-name {
    letter-spacing: 0 !important;
}

.btn-primary,
button,
.nav-link,
.nav-item-box,
.mobile-drawer-link {
    font-weight: 700;
}

.works-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.works-kicker {
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.works-hero h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 800;
}

.works-copy {
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.5;
    margin: 0;
}

.works-post-btn {
    width: auto !important;
    min-width: 132px;
    height: 48px !important;
    padding: 0 24px !important;
    flex-shrink: 0;
    border-radius: 4px !important;
}

.works-benefits {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.works-benefits > div {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.works-benefits i {
    color: var(--brand-primary);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
}

.works-grid > div {
    background: white !important;
    border-radius: 14px !important;
    padding: 20px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04) !important;
}

.works-grid h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    color: #0f172a !important;
    font-weight: 800 !important;
}

.works-grid button {
    border-radius: 8px !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
}

.view-pane,
main,
#pane-explore {
    background: #ffffff;
}

#explore-grid.product-grid {
    align-items: start;
}

#explore-grid.product-grid .p-card {
    border-radius: 10px;
    min-height: 0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

#explore-grid.product-grid .p-img-box {
    height: 104px !important;
    background: #f8fafc !important;
}

#explore-grid.product-grid .p-img {
    padding: 8px !important;
}

#explore-grid.product-grid .p-info {
    padding: 10px 12px 12px !important;
    gap: 5px;
}

#explore-grid.product-grid .p-category {
    margin: 0 !important;
    font-size: 9px !important;
}

#explore-grid.product-grid .p-name {
    height: 34px !important;
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}

#explore-grid.product-grid .p-price {
    margin: 2px 0 0 !important;
    font-size: 18px !important;
    line-height: 1.1;
}

#explore-grid.product-grid .p-verified {
    margin: 2px 0 5px !important;
    font-size: 11px !important;
    line-height: 1.2;
}

#explore-grid.product-grid .p-actions-box button,
#explore-grid.product-grid .p-actions-box > div {
    min-height: 38px !important;
    border-radius: 8px !important;
}

@media (max-width: 767px) {
    #explore-grid.product-grid .p-img-box {
        height: 96px !important;
    }

    #explore-grid.product-grid .p-info {
        padding: 9px 10px 10px !important;
    }
}

/* -------------------------------------------------- */
/* Final Mobile Enquiry Hub Overrides */

@media (max-width: 767px) {
    #pane-hub {
        padding-bottom: 156px !important;
    }

    #pane-hub .hub-topbar {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 14px !important;
        padding: 16px !important;
        border-radius: 24px !important;
    }

    #pane-hub .hub-hero-head {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px;
    }

    #pane-hub .hub-topbar .sell-page-title {
        max-width: none !important;
        font-size: 18px !important;
        line-height: 1.08 !important;
        margin-bottom: 0 !important;
    }

    #pane-hub .hub-topbar-actions {
        width: auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        margin-top: 0 !important;
    }

    #pane-hub .hub-hero-copy p {
        max-width: none !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-top: 10px !important;
    }

    #pane-hub .hub-hero-cta {
        width: auto !important;
        min-width: 176px !important;
        min-height: 46px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
        white-space: nowrap !important;
    }

    #pane-hub .hub-inquiries-card {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        min-height: 0 !important;
    }

    #pane-hub .hub-request-card {
        padding: 14px !important;
        border-radius: 22px !important;
    }

    #pane-hub .hub-request-shell {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    #pane-hub .hub-request-main {
        min-width: 0 !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }

    #pane-hub .hub-request-title {
        font-size: 14px !important;
        line-height: 1.25 !important;
    }

    #pane-hub .hub-request-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    #pane-hub .hub-request-primary,
    #pane-hub .hub-request-secondary {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 42px !important;
        align-self: stretch !important;
        justify-content: center !important;
    }

    #pane-hub .hub-request-footer {
        gap: 8px !important;
        padding-top: 8px !important;
        align-items: stretch !important;
    }

    #pane-hub .hub-meta-pill {
        min-height: 24px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
    }

    #quote-request-panel .sell-form-grid,
    #quote-request-panel .sell-form-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    #quote-request-panel .hub-create-card {
        padding: 14px !important;
        border-radius: 22px !important;
    }

    #quote-request-panel .hub-form-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    #quote-request-panel .hub-form-side {
        order: -1;
        display: block !important;
    }

    #quote-request-panel .hub-form-main {
        display: grid !important;
        gap: 14px !important;
    }

    #quote-request-panel .sell-field-block,
    #quote-request-panel .sell-field-block-full,
    #quote-request-panel .hub-form-side .sell-field-block {
        width: 100% !important;
        min-width: 0 !important;
    }

    #quote-request-panel .sell-field-block label {
        margin-bottom: 6px !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.3px !important;
        word-break: normal !important;
        text-transform: uppercase;
    }

    #quote-request-panel .form-control {
        width: 100% !important;
        min-height: 46px !important;
        padding: 0 14px !important;
    }

    #quote-request-panel textarea.form-control {
        min-height: 120px !important;
        padding: 12px 14px !important;
    }

    #quote-request-panel .hub-upload-box {
        min-height: 92px !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    #quote-request-panel .sell-upload-copy strong {
        font-size: 15px !important;
    }

    #quote-request-panel .sell-upload-copy span,
    #quote-request-panel .hub-upload-note {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    #quote-request-panel .req-upload-preview {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    #quote-request-panel .req-upload-preview-copy strong {
        font-size: 14px !important;
    }

    #quote-request-panel .req-upload-preview-copy span {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    #quote-request-panel .hub-form-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

@media (max-width: 767px) {
    /* Final lock for the mobile Enquiry Hub quote form. This sits at the end of the file
       so it wins over older Hub/mobile rules that were squeezing fields into awkward widths. */
    #quote-request-panel {
        width: 100% !important;
    }

    #quote-request-panel .sell-form-wrap,
    #quote-request-panel .hub-create-card,
    #quote-request-panel form,
    #quote-request-panel .hub-form-layout,
    #quote-request-panel .hub-form-main,
    #quote-request-panel .hub-form-side,
    #quote-request-panel .sell-form-grid,
    #quote-request-panel .sell-form-grid-2,
    #quote-request-panel .sell-field-block,
    #quote-request-panel .sell-field-block-full {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #quote-request-panel .hub-create-card {
        padding: 16px !important;
        border-radius: 24px !important;
    }

    #quote-request-panel .hub-form-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    #quote-request-panel .hub-form-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    #quote-request-panel .hub-form-side {
        order: 10 !important;
        display: block !important;
    }

    #quote-request-panel .sell-form-grid,
    #quote-request-panel .sell-form-grid-2 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    #quote-request-panel .sell-field-block label {
        display: block !important;
        margin: 0 0 7px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.4px !important;
        word-break: normal !important;
        white-space: normal !important;
    }

    #quote-request-panel .form-control,
    #quote-request-panel select.form-control,
    #quote-request-panel input.form-control,
    #quote-request-panel textarea.form-control {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        font-size: 16px !important;
        line-height: 1.35 !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
    }

    #quote-request-panel textarea.form-control {
        min-height: 128px !important;
        padding: 14px !important;
        resize: vertical !important;
    }

    #quote-request-panel .hub-upload-box {
        width: 100% !important;
        min-height: 102px !important;
        padding: 16px !important;
        border-radius: 18px !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    #quote-request-panel .sell-upload-copy {
        min-width: 0 !important;
    }

    #quote-request-panel .sell-upload-copy strong {
        display: block !important;
        font-size: 16px !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    #quote-request-panel .sell-upload-copy span,
    #quote-request-panel .hub-upload-note,
    #quote-request-panel .req-upload-preview-copy span {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    #quote-request-panel .req-upload-preview {
        display: flex !important;
        align-items: center !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        min-height: 76px !important;
        padding: 10px 12px !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }

    #quote-request-panel .req-upload-preview-img,
    #quote-request-panel .req-upload-preview-fallback {
        width: 72px !important;
        height: 72px !important;
        border-radius: 14px !important;
        flex-shrink: 0 !important;
    }

    #quote-request-panel .req-upload-preview-copy {
        flex: 1 !important;
        min-width: 0 !important;
    }

    #quote-request-panel .req-upload-preview-copy strong {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }

    #quote-request-panel .hub-form-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-top: 18px !important;
    }

    #quote-request-panel .hub-form-actions .hub-quote-submit {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        justify-content: center !important;
    }

    .inquiry-detail-shell {
        width: min(100%, 420px) !important;
        max-width: none !important;
        margin: auto 0 0 !important;
        padding: 22px 18px 20px !important;
        border-radius: 28px 28px 0 0 !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
    }

    .inquiry-detail-close {
        top: 14px !important;
        right: 14px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 14px !important;
    }

    .inquiry-detail-head {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        gap: 12px !important;
        justify-items: center !important;
    }

    .inquiry-detail-head-copy {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
    }

    .inquiry-detail-head-copy h2 {
        font-size: 22px !important;
        line-height: 1.14 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .inquiry-detail-meta,
    .inquiry-detail-desc,
    .inquiry-offer-copy,
    .inquiry-timeline-body {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .inquiry-detail-meta {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .inquiry-detail-meta-pill {
        width: 100% !important;
        min-height: 42px !important;
        padding: 0 12px !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 16px !important;
        line-height: 1.25 !important;
    }

    .inquiry-detail-head-cta,
    .inquiry-detail-close-btn {
        min-width: 0 !important;
        justify-content: center !important;
        justify-self: stretch !important;
    }

    .inquiry-detail-head-cta {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 46px !important;
        margin-top: 2px !important;
        padding: 0 16px !important;
        justify-self: stretch !important;
        align-self: stretch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 14px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        box-shadow: 0 12px 24px -18px rgba(20, 184, 166, 0.95) !important;
    }

    .inquiry-detail-close-btn {
        width: 100% !important;
        max-width: none !important;
        justify-self: stretch !important;
    }

    .inquiry-detail-card,
    .inquiry-offer-card {
        padding: 16px !important;
        border-radius: 20px !important;
        margin-bottom: 14px !important;
    }

    .inquiry-detail-attachment-img {
        max-height: 240px !important;
        border-radius: 14px !important;
    }

    .inquiry-timeline {
        gap: 12px !important;
    }

    .inquiry-timeline-card {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .inquiry-timeline-top {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .inquiry-timeline-name {
        font-size: 16px !important;
    }

    .inquiry-timeline-time {
        white-space: normal !important;
    }

    .inquiry-detail-actions {
        display: block !important;
    }
}



