/* ============================================================
   烛物集 Candlewowo · 移动端专项优化
   范围：≤768px，重点390px视口
   设计原则：不破坏现有style.css，仅做移动端覆盖与增强
   ============================================================ */

/* ---------- 全局防溢出 ---------- */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    body {
        font-size: 14px;
        -webkit-text-size-adjust: 100%;
    }
    .container {
        padding: 0 16px;
    }
    main > .container:first-child:not(.member-layout) {
        padding-top: 72px;
    }
    table, img, iframe, video, embed, object {
        max-width: 100%;
    }
    p, h1, h2, h3, h4, h5, h6, li, td, th, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ---------- 顶部导航：汉堡菜单可见性 ---------- */
@media (max-width: 768px) {
    .site-header {
        padding: 0 16px;
        height: 52px;
    }
    .site-header .logo {
        font-size: 17px;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }
    /* 汉堡按钮：加半透明圆形背景底，保证在任何背景上可见 */
    .menu-toggle {
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border-radius: 50%;
        background: rgba(44, 36, 28, 0.12);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.2s ease;
    }
    .menu-toggle:hover {
        background: rgba(44, 36, 28, 0.22);
    }
    .menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
    }
    .site-header.scrolled .menu-toggle {
        background: rgba(44, 36, 28, 0.06);
    }
    .site-header.scrolled .menu-toggle span {
        background: var(--text-primary);
    }
    .site-header.on-dark .menu-toggle {
        background: rgba(253, 248, 240, 0.18);
    }
    .site-header.on-dark .menu-toggle span {
        background: #FDF8F0;
    }
}

/* ---------- 移动端全屏下拉菜单 ---------- */
@media (max-width: 768px) {
    .site-header .nav-links {
        padding: 70px 24px 40px;
        gap: 0;
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .site-header .nav-links li {
        width: 100%;
    }
    .site-header .nav-links a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 10px 4px;
        font-size: 17px;
        font-weight: 500;
        border-bottom: 1px solid rgba(44, 36, 28, 0.06);
        width: 100%;
    }
    .site-header .nav-links a:hover {
        color: var(--gold);
    }
    /* 购物车在下拉菜单中 */
    .site-header .nav-links .cart-icon {
        width: auto;
        height: auto;
        justify-content: flex-start;
        gap: 10px;
    }
    .site-header .nav-links .cart-icon svg {
        display: none;
    }
    .site-header .nav-links .cart-icon .cart-label {
        display: inline;
        font-size: 17px;
        font-weight: 500;
    }
    /* 在线客服在下拉菜单中 */
    .site-header .nav-links .nav-cs svg {
        display: none;
    }
    .site-header .nav-links .nav-cs .nav-cs-text {
        font-size: 17px;
        font-weight: 500;
    }
    .cart-badge {
        position: static;
        transform: none;
        margin-left: auto;
    }
    .cart-badge.empty {
        transform: none;
        display: none;
    }
    /* 会员菜单在下拉中展开 */
    .member-menu .member-trigger {
        min-height: 48px;
        padding: 10px 4px;
    }
    .member-dropdown {
        margin-top: 0;
        padding-left: 16px;
    }
    .member-dropdown li a {
        font-size: 15px;
        min-height: 42px;
        padding: 8px 4px;
    }
    /* 消息铃铛在下拉中 */
    .msg-menu .msg-trigger {
        min-height: 48px;
        padding: 10px 4px;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    .msg-menu .msg-trigger svg {
        display: none;
    }
    .msg-menu .msg-trigger .msg-label {
        display: inline;
        font-size: 17px;
        font-weight: 500;
        color: var(--text-primary);
    }
    .msg-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 16px;
    }
    .msg-dropdown.open {
        display: block;
    }
    /* 语言切换 */
    .lang-switch .lang-link {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
    }
}

/* ---------- 首页 Hero 轮播 ---------- */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 60vh;
    }
    .hero-slide {
        padding: 80px 20px 70px;
    }
    .hero-slide-content h1 {
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 1.25;
    }
    .hero-slide-content p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
    }
    .hero-dots {
        bottom: 16px;
        gap: 8px;
    }
    .hero-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        flex-shrink: 0;
    }
    .hero-dark {
        min-height: 50vh;
        padding: 90px 20px 60px;
    }
    .hero-dark h1 {
        font-size: 32px;
    }
    .hero-dark p {
        font-size: 14px;
    }
}

/* ---------- 商品网格 & 卡片 ---------- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
    }
    .product-card .card-image {
        aspect-ratio: 16 / 10;
    }
    .product-card .card-body {
        padding: 14px 2px 4px;
    }
    .product-card .card-title {
        font-size: 16px;
    }
    .product-card .card-subtitle {
        font-size: 13px;
    }
    .product-card .card-price {
        font-size: 17px;
    }
    .card-add-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 36px;
        line-height: 1.4;
    }
    .card-title-row {
        align-items: flex-start;
    }
}

/* ---------- 商店页：分类TAB横向滚动 ---------- */
@media (max-width: 768px) {
    .store-page {
        padding-top: 20px;
    }
    .store-header h1 {
        font-size: 26px;
    }
    .store-header p {
        font-size: 13px;
    }
    .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 8px;
        padding: 24px 16px 12px;
        margin: 0 -16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    .cat-tab {
        flex-shrink: 0;
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
}

/* ---------- 商品详情页 ---------- */
@media (max-width: 768px) {
    .product-detail {
        padding: 60px 0 40px;
        gap: 24px;
    }
    .product-detail .detail-images {
        border-radius: 12px;
    }
    .product-detail .detail-main-image {
        aspect-ratio: 1 / 1;
    }
    .product-detail .detail-thumbnails {
        padding: 10px 12px 12px;
    }
    .product-detail .detail-thumbnails img {
        width: 52px;
        height: 52px;
    }
    .product-detail .detail-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .product-detail .detail-price {
        font-size: 24px;
        margin-bottom: 14px;
    }
    .product-detail .detail-description {
        font-size: 14px;
        line-height: 1.75;
    }
    /* 属性卡片：390px下2列 */
    .attr-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .attr-card {
        padding: 10px 8px;
    }
    .attr-card-icon {
        font-size: 18px;
    }
    .attr-card-label {
        font-size: 11px;
        margin-top: 4px;
    }
    .attr-card-value {
        font-size: 13px;
        margin-top: 2px;
    }
    /* 自定义属性网格 */
    .custom-spec-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .custom-spec-chip {
        padding: 8px 12px;
    }
    /* 购买面板 */
    .purchase-panel {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .purchase-panel .quantity-row {
        gap: 10px;
        margin-bottom: 14px;
    }
    .purchase-panel .quantity-row input[type="number"] {
        width: 56px;
        padding: 10px 4px;
        font-size: 16px;
        min-height: 44px;
    }
    .purchase-panel .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    .purchase-panel .btn-group .btn {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
    }
    .purchase-panel .btn-group form {
        width: 100%;
    }
    /* 批发价阶梯表：横向滚动容器 */
    .wholesale-price-table {
        padding: 14px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .price-tier-table {
        min-width: 280px;
        font-size: 12px;
    }
    .price-tier-table th,
    .price-tier-table td {
        padding: 6px 8px;
        white-space: nowrap;
    }
    /* 批发阶梯列表 */
    .tier-item {
        padding: 10px 12px;
    }
    .tier-range {
        font-size: 12px;
    }
    .tier-price {
        font-size: 13px;
    }
    /* 评价区 */
    .product-reviews {
        padding: 18px 16px;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .product-reviews-title {
        font-size: 16px;
    }
    .review-entry {
        padding: 14px 0;
    }
    .review-entry-content {
        font-size: 13px;
        line-height: 1.7;
    }
    .review-imgs img,
    .review-entry-imgs img {
        width: 64px;
        height: 64px;
    }
    /* 规格列表 */
    .product-detail .detail-specs .spec-item {
        font-size: 13px;
        padding: 8px 0;
    }
    /* 属性行 */
    .attribute-row {
        padding: 10px 12px;
        flex-wrap: wrap;
    }
    .attribute-row .attr-label {
        width: 80px;
        font-size: 13px;
    }
    .attribute-row .attr-value {
        font-size: 13px;
        flex: 1;
        min-width: 0;
    }
    .product-attributes {
        border-radius: 10px;
    }
    .custom-specs {
        padding: 14px 12px;
        border-radius: 10px;
    }
    .custom-specs .attribute-row {
        padding: 8px 10px;
    }
    /* 价格卡片 */
    .attr-price-card {
        padding: 14px 16px;
        border-radius: 12px;
    }
    .price-card-value {
        font-size: 22px;
    }
}

/* 超窄屏（≤400px）属性卡片单列 */
@media (max-width: 400px) {
    .attr-cards {
        grid-template-columns: 1fr;
    }
}

/* ---------- 购物车 / 结算 / 订单 ---------- */
@media (max-width: 768px) {
    /* 购物车表格：紧凑布局 */
    .cart-table {
        font-size: 13px;
    }
    .cart-table th,
    .cart-table td {
        padding: 10px 6px;
    }
    .cart-product {
        gap: 10px;
    }
    .cart-thumb {
        width: 56px;
        height: 56px;
    }
    .cart-name {
        font-size: 14px;
    }
    .qty-form {
        gap: 6px;
    }
    .qty-input {
        width: 52px;
        padding: 8px 4px;
        font-size: 15px;
        min-height: 40px;
    }
    /* 结算页 */
    .checkout-wrap {
        padding: 0 16px;
    }
    .checkout-panel {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .checkout-title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .order-table {
        font-size: 13px;
    }
    .order-table th,
    .order-table td {
        padding: 8px 6px;
    }
    .amount-rows {
        font-size: 13px;
    }
    .amount-total {
        font-size: 16px;
    }
    /* 表单字段 */
    .form-field input[type="text"],
    .form-field input[type="tel"],
    .form-field textarea,
    .form-field select {
        padding: 12px 14px;
        font-size: 15px;
        min-height: 44px;
    }
    .form-field textarea {
        min-height: 80px;
    }
    /* 结算按钮 */
    .checkout-submit,
    .btn-checkout {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
    }
    /* 订单详情页 */
    .order-status-bar {
        padding: 14px 16px;
        gap: 10px;
        flex-wrap: wrap;
    }
    .order-status-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .order-status-txt strong {
        font-size: 15px;
    }
    .order-status-amt {
        font-size: 18px;
        width: 100%;
        text-align: right;
    }
    .order-items-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .order-actions {
        flex-direction: column;
        gap: 10px;
        margin: 16px 0 40px;
    }
    .order-actions .btn {
        width: 100%;
        min-height: 46px;
    }
    .order-actions form {
        width: 100%;
    }
}

/* ---------- 登录 / 注册 ---------- */
@media (max-width: 768px) {
    .auth-page {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 40px;
    }
    .auth-card {
        padding: 28px 22px;
        border-radius: 16px;
    }
    .auth-brand {
        font-size: 20px;
    }
    .auth-sub {
        font-size: 12px;
        margin: 6px 0 20px;
    }
    .auth-field input {
        padding: 12px 14px;
        font-size: 15px;
        min-height: 46px;
    }
    .auth-field label {
        font-size: 13px;
    }
    .auth-submit {
        padding: 14px;
        font-size: 15px;
        min-height: 48px;
    }
    .auth-footer {
        font-size: 13px;
        margin-top: 16px;
    }
    /* 用户类型选择器 */
    .user-type-select {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .type-option {
        padding: 14px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .type-option .type-icon {
        font-size: 28px;
        flex-shrink: 0;
    }
    .type-option .type-name {
        font-size: 15px;
        margin-top: 0;
    }
    .type-option .type-desc {
        font-size: 12px;
        margin-top: 2px;
    }
    .auth-field textarea {
        padding: 12px 14px;
        font-size: 14px;
        min-height: 80px;
    }
}

/* ---------- 会员中心 ---------- */
@media (max-width: 768px) {
    .member-layout {
        padding: 72px 0 32px;
        gap: 16px;
    }
    .member-sidebar {
        border-radius: 12px;
    }
    .member-profile {
        padding: 16px 14px;
    }
    .member-profile-avatar {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .member-profile-name {
        font-size: 14px;
    }
    .member-profile-level {
        font-size: 11px;
    }
    /* 会员导航：横向滚动 */
    .member-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 4px;
        padding: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .member-nav::-webkit-scrollbar {
        display: none;
    }
    .member-nav-item {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        border-radius: 8px;
    }
    /* 会员内容面板 */
    .member-panel {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .member-panel-title {
        font-size: 22px;
    }
    .member-panel-sub {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .member-panel-title-sm {
        font-size: 17px;
    }
    /* 统计卡片 */
    .member-stat-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .member-stat-card {
        padding: 14px 10px;
    }
    .member-stat-number {
        font-size: 22px;
    }
    .member-stat-label {
        font-size: 12px;
    }
    /* 快捷入口 */
    .member-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .member-quick-item {
        padding: 14px 10px;
        font-size: 13px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* 订单筛选TAB横向滚动 */
    .member-order-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .member-order-tabs::-webkit-scrollbar {
        display: none;
    }
    .member-order-tab {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    /* 订单表格横向滚动 */
    .member-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .member-table {
        font-size: 13px;
        min-width: 480px;
    }
    .member-table th,
    .member-table td {
        padding: 10px 8px;
    }
    /* 订单商品 */
    .member-order-prod {
        gap: 8px;
    }
    .member-order-thumb {
        width: 44px;
        height: 44px;
    }
    .member-order-prod-name {
        font-size: 13px;
    }
    /* 地址卡片 */
    .member-address-card {
        padding: 14px;
        gap: 12px;
    }
    .member-address-full {
        font-size: 13px;
    }
    .member-address-actions {
        gap: 10px;
        width: 100%;
    }
    .member-address-actions .member-link {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        padding: 6px 0;
    }
    /* 会员表单 */
    .member-form-row {
        flex-direction: column;
        gap: 6px;
    }
    .member-form-label {
        flex-basis: auto;
        text-align: left;
        font-size: 13px;
        padding-top: 0;
    }
    .member-form-control input[type="text"],
    .member-form-control input[type="email"],
    .member-form-control input[type="tel"],
    .member-form-control input[type="password"],
    .member-form-control input[type="date"],
    .member-form-control input[type="number"],
    .member-form-control select,
    .member-form-control textarea {
        max-width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        min-height: 44px;
    }
    .member-form-fields3 {
        flex-direction: column;
    }
    .member-form-fields3 input {
        min-width: 100%;
    }
    .member-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .member-form-actions .btn {
        width: 100%;
        min-height: 46px;
    }
    /* 信息网格 */
    .member-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .member-info-item {
        font-size: 13px;
    }
    .member-info-key {
        flex: 0 0 70px;
        font-size: 12px;
    }
    /* 金额汇总 */
    .order-summary {
        max-width: 100%;
    }
    /* 操作按钮 */
    .member-action-row {
        flex-direction: column;
        gap: 10px;
    }
    .member-action-row .btn {
        width: 100%;
        min-height: 46px;
    }
    /* 优惠券 */
    .coupon-card {
        padding: 14px;
        gap: 12px;
    }
    .coupon-value {
        flex: 0 0 80px;
        padding-right: 12px;
    }
    .coupon-value-num {
        font-size: 20px;
    }
    .coupon-main {
        min-width: 0;
    }
    .coupon-name {
        font-size: 14px;
    }
    .coupon-meta {
        font-size: 11px;
    }
    .coupon-side {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /* 钱包卡片 */
    .wallet-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .wallet-card-balance {
        font-size: 28px;
    }
    .wallet-card-actions {
        flex-direction: column;
    }
    .wallet-card-actions .btn {
        width: 100%;
    }
    /* 消息列表 */
    .msg-item {
        padding: 14px;
        gap: 10px;
    }
    .msg-title {
        font-size: 14px;
    }
    .msg-summary {
        font-size: 12px;
        white-space: normal;
    }
    .msg-time {
        font-size: 11px;
    }
    .msg-detail {
        padding: 18px 16px;
    }
    .msg-detail-title {
        font-size: 17px;
    }
    .msg-detail-content {
        font-size: 14px;
    }
    /* 评价表单 */
    .review-form-block {
        padding: 16px 14px;
    }
    .star-input-item .star {
        font-size: 24px;
    }
    /* 分页 */
    .pagination {
        padding: 24px 0 12px;
        gap: 4px;
    }
    .pagination a,
    .pagination span {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* ---------- 批发中心 ---------- */
@media (max-width: 768px) {
    .batch-order-area textarea {
        font-size: 13px;
        padding: 12px;
        min-height: 160px;
        line-height: 1.5;
    }
    .wholesale-table,
    .ws-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .ws-actions,
    .batch-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .ws-actions .btn,
    .batch-actions .btn {
        width: 100%;
        min-height: 46px;
    }
    .invoice-list,
    .invoice-card {
        font-size: 13px;
    }
    .invoice-card {
        padding: 14px;
    }
}

/* ---------- 页脚 ---------- */
@media (max-width: 768px) {
    .site-footer {
        padding: 28px 0 0;
        margin-top: 28px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        padding-bottom: 20px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-contact-col {
        grid-column: 1 / -1;
    }
    .footer-brand {
        font-size: 17px;
    }
    .footer-brand-desc {
        font-size: 12px;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .footer-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer-links li {
        margin-bottom: 5px;
    }
    .footer-links a {
        font-size: 13px;
        display: inline-block;
        min-height: 26px;
        padding: 3px 0;
    }
    .footer-contact li {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .footer-newsletter-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .footer-subscribe-form {
        flex-direction: column;
        gap: 8px;
    }
    .footer-subscribe-form input[type="email"] {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        min-height: 42px;
    }
    .btn-subscribe {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        min-height: 42px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 0;
        font-size: 11px;
    }
    .footer-social {
        width: 36px;
        height: 36px;
    }
}

/* ---------- 客服悬浮按钮 ---------- */
@media (max-width: 768px) {
    .cs-float-btn {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 16px;
    }
    .cs-float-btn svg {
        width: 22px;
        height: 22px;
    }
    .cs-float-dot {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        line-height: 16px;
        top: 0;
        right: 0;
    }
}

/* ---------- 平板断点（769px-992px）补充 ---------- */
@media (min-width: 769px) and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .attr-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .member-layout {
        gap: 16px;
    }
    .member-sidebar {
        flex: 0 0 200px;
    }
}

/* ---------- 触控目标通用增强 ---------- */
@media (max-width: 768px) {
    button,
    input[type="submit"],
    input[type="button"],
    input[type="reset"],
    .btn,
    a.btn {
        min-height: 44px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
    }
    label {
        cursor: pointer;
    }
    .empty-state {
        padding: 60px 0 80px;
        font-size: 14px;
    }
    .flash-messages {
        margin: 64px auto 0;
        padding: 0 16px;
    }
    .flash {
        padding: 12px 16px;
        font-size: 13px;
    }
}
