@charset "UTF-8";
:root {
    --t-bg: #f8fafc;
    --t-card: #ffffff;
    --t-text: #1e293b;
    --t-sub: #64748b;
    --t-border: #e2e8f0;
    --t-accent: #0d9488;
    --t-orange: #ff5000;
    --t-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
body {
    margin: 0; background: var(--t-bg); color: var(--t-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a { color: var(--t-text); text-decoration: none; }
.laccolith-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--t-card); border-bottom: 2px solid var(--t-border);
    box-shadow: var(--t-shadow);
}
.laccolith-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    height: 65px; display: flex; align-items: center; justify-content: space-between;
}
.laccolith-logo img { height: 32px; }
.laccolith-nav { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
.laccolith-nav a { color: var(--t-text); font-weight: bold; transition: color 0.2s; }
.laccolith-nav a:hover, .laccolith-nav .laccolith-active { color: var(--t-accent); }
.laccolith-user-zone { display: flex; align-items: center; }
.laccolith-avatar { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--t-border); }
.laccolith-btn-login { background: var(--t-accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-weight: bold; }
.laccolith-notice-bar { background: #f0fdfa; border-bottom: 1px solid #ccfbf1; padding: 10px 20px; }
.laccolith-notice-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; }
.laccolith-notice-tag { background: var(--t-accent); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 2px; font-weight: bold; }
.laccolith-notice-text { color: #115e59; font-size: 13px; font-weight: bold; }
.laccolith-home-container { max-width: 1200px; margin: 30px auto; padding: 0 20px; display: flex; gap: 30px; }
.laccolith-main-content { flex: 1; min-width: 0; }
.laccolith-sidebar { width: 280px; flex-shrink: 0; }
.laccolith-widget { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 20px; margin-bottom: 20px; }
.laccolith-widget-title { font-size: 14px; font-weight: bold; margin-bottom: 15px; border-left: 3px solid var(--t-accent); padding-left: 10px; }
.laccolith-hero-section { display: flex; gap: 20px; margin-bottom: 30px; }
.laccolith-hero-left { flex: 2; display: flex; gap: 20px; }
.laccolith-hero-left-card { flex: 1; background: var(--t-card); border: 1px solid var(--t-border); border-radius: 6px; overflow: hidden; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.laccolith-hero-left-card:hover { transform: translateY(-2px); box-shadow: var(--t-shadow); border-color: var(--t-accent); }
.laccolith-hero-left-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: #ffffff; border-bottom: 1px solid var(--t-border); }
.laccolith-hero-left-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.laccolith-hero-left-info { padding: 15px; }
.laccolith-hero-left-name { font-size: 14px; font-weight: bold; margin: 0 0 10px 0; height: 40px; overflow: hidden; }
.laccolith-hero-left-price { color: var(--t-accent); font-size: 15px; font-weight: bold; }
.laccol-right-box { flex: 1; background: var(--t-card); border: 1px solid var(--t-border); border-radius: 6px; padding: 20px; box-sizing: border-box; }
.laccol-box-title { font-size: 15px; font-weight: bold; margin-bottom: 15px; border-left: 3px solid var(--t-accent); padding-left: 10px; }
.laccol-right-list { display: flex; flex-direction: column; gap: 12px; }
.laccol-right-row { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px dashed var(--t-border); }
.laccol-right-row:last-child { border-bottom: none; padding-bottom: 0; }
.laccol-right-dot { width: 4px; height: 44px; background: var(--t-accent); border-radius: 2px; }
.laccol-right-name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.laccol-right-name:hover { color: var(--t-accent); }
.laccol-right-price { font-size: 14px; font-weight: bold; color: var(--t-orange); }
.laccol-home-tabs { margin-bottom: 30px; width: 100%; }
.laccol-home-tabs-inner { display: flex; align-items: center; background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 12px 20px; gap: 20px; }
.laccol-tabs-tag { background: var(--t-accent); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 2px; font-weight: bold; }
.laccol-tab-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 15px; flex-wrap: wrap; }
.laccol-tab-list a { font-size: 13px; font-weight: bold; color: var(--t-sub); transition: color 0.2s; }
.laccol-tab-list a:hover { color: var(--t-accent); }
.laccol-tile-section { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 6px; padding: 25px; margin-bottom: 30px; }
.laccol-tile-title { font-size: 15px; font-weight: bold; margin-bottom: 20px; border-bottom: 1px solid var(--t-border); padding-bottom: 10px; }
.laccol-tile-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.laccol-tile-card { display: block; aspect-ratio: 1; background: #fafafa; border: 1px solid var(--t-border); border-radius: 4px; position: relative; overflow: hidden; transition: transform 0.2s; }
.laccol-tile-card:hover { transform: translateY(-2px); border-color: var(--t-accent); }
.laccol-tile-img-box { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.laccol-tile-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.laccol-tile-overlay { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); padding: 12px; box-sizing: border-box; color: #fff; transition: background 0.2s; }
.laccol-tile-card:hover .laccol-tile-overlay { background: linear-gradient(to top, rgba(13,148,136,0.9), rgba(0,0,0,0.4)); }
.laccol-tile-name { font-size: 12px; font-weight: bold; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.laccol-tile-price { font-size: 14px; font-weight: bold; }
.laccol-cat-section { margin-bottom: 40px; }
.laccol-cat-header { font-size: 18px; font-weight: bold; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--t-accent); }
.laccol-split-layout { display: flex; gap: 30px; }
.laccol-col-left { width: 24%; flex-shrink: 0; }
.laccol-col-left-card { display: block; background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; overflow: hidden; height: 100%; transition: transform 0.2s, box-shadow 0.2s; }
.laccol-col-left-card:hover { transform: translateY(-2px); box-shadow: var(--t-shadow); border-color: var(--t-accent); }
.laccol-col-left-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: #ffffff; border-bottom: 1px solid var(--t-border); }
.laccol-col-left-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.laccol-col-left-info { padding: 15px; }
.laccol-col-left-name { font-size: 14px; font-weight: bold; margin: 0 0 10px 0; height: 40px; overflow: hidden; }
.laccol-col-left-price { color: var(--t-accent); font-size: 15px; font-weight: bold; }
.laccol-col-middle { flex: 1; min-width: 0; }
.laccol-col-middle-list { display: flex; flex-direction: column; gap: 15px; }
.laccol-col-middle-row { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 15px; display: flex; align-items: center; gap: 20px; transition: transform 0.2s; }
.laccol-col-middle-row:hover { transform: translateY(-2px); border-color: var(--t-accent); }
.laccol-mid-tag { font-size: 11px; background: #f1f5f9; color: #475569; padding: 2px 6px; border-radius: 3px; }
.laccol-mid-tag-auto { background: #e0f2fe; color: #0369a1; }
.laccol-mid-name { font-size: 14px; font-weight: bold; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.laccol-mid-price { color: var(--t-accent); font-size: 15px; font-weight: bold; margin-right: 10px; }
.laccol-col-right { width: 24%; flex-shrink: 0; background: #f8fafc; border: 1px solid var(--t-border); border-radius: 4px; padding: 20px; box-sizing: border-box; }
.laccol-rank-title { font-size: 15px; font-weight: bold; margin-bottom: 15px; border-left: 3px solid var(--t-accent); padding-left: 10px; }
.laccol-rank-list { list-style: none; margin: 0; padding: 0; }
.laccol-rank-list li { border-bottom: 1px dashed var(--t-border); }
.laccol-rank-list li:last-child { border-bottom: none; }
.laccol-rank-row-top { padding-bottom: 15px; margin-bottom: 10px; }
.laccol-rank-card-top { display: block; background: var(--t-accent); color: #fff; padding: 15px; border-radius: 4px; box-shadow: var(--t-shadow); }
.laccol-rank-card-title { font-size: 13px; font-weight: bold; margin-bottom: 10px; height: 36px; overflow: hidden; }
.laccol-rank-card-meta { display: flex; justify-content: space-between; align-items: center; }
.laccol-rank-card-num { font-size: 20px; font-weight: 800; opacity: 0.8; font-family: monospace; }
.laccol-rank-card-price { font-size: 15px; font-weight: bold; }
.laccol-rank-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.laccol-rank-num { width: 20px; height: 20px; line-height: 20px; background: #e2e8f0; color: #64748b; font-size: 11px; font-weight: bold; text-align: center; border-radius: 2px; font-family: monospace; }
.laccol-rank-name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.laccol-rank-name:hover { color: var(--t-accent); }
.laccol-feed-card { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.laccol-feed-card:hover { transform: translateY(-2px); box-shadow: var(--t-shadow); border-color: var(--t-accent); }
.laccol-feed-img-box { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: #ffffff; border-bottom: 1px solid var(--t-border); }
.laccol-feed-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.laccol-feed-info { padding: 15px; }
.laccol-feed-name { font-size: 13px; font-weight: bold; margin-bottom: 8px; }
.laccol-feed-meta { display: flex; justify-content: space-between; align-items: center; }
.laccol-feed-price { color: var(--t-accent); font-size: 15px; font-weight: bold; }
.laccolith-sidebar { width: 280px; flex-shrink: 0; }
.laccolith-widget { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 20px; margin-bottom: 20px; }
.laccolith-widget-title { font-size: 14px; font-weight: bold; margin-bottom: 15px; border-left: 3px solid var(--t-accent); padding-left: 10px; }
.laccolith-side-window { display: flex; flex-direction: column; gap: 10px; }
.laccolith-side-card { display: flex; align-items: center; gap: 12px; padding: 10px; background: #fafafa; border: 1px solid var(--t-border); border-radius: 4px; transition: border-color 0.2s; }
.laccolith-side-card:hover { border-color: var(--t-accent); }
.laccolith-side-card-img { width: 40px; height: 40px; object-fit: contain; background: #fff; border-radius: 2px; }
.laccolith-side-card-info { flex: 1; min-width: 0; }
.laccolith-side-card-name { font-size: 12px; font-weight: bold; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.laccolith-side-card-price { color: var(--t-orange); font-size: 13px; font-weight: bold; }
.laccolith-query-links { display: flex; flex-direction: column; gap: 10px; }
.laccolith-query-btn { display: block; padding: 10px; background: #fafafa; border: 1px solid var(--t-border); border-radius: 4px; text-align: center; font-size: 12px; font-weight: bold; transition: all 0.2s; }
.laccolith-query-btn:hover { background: var(--t-accent); color: #fff; border-color: var(--t-accent); }
.laccolith-contact-box { text-align: center; }
.laccolith-contact-avatar { width: 44px; height: 44px; line-height: 44px; background: #fafafa; border: 1px solid var(--t-border); border-radius: 50%; margin: 0 auto 10px; font-size: 18px; color: var(--t-sub); }
.laccolith-contact-name { font-size: 14px; font-weight: bold; margin-bottom: 5px; }
.laccolith-contact-sub { font-size: 11px; color: var(--t-sub); }
.laccolith-breadcrumb { max-width: 1200px; margin: 20px auto 0; padding: 0 20px; font-size: 13px; color: var(--t-sub); }
.laccolith-breadcrumb a { color: var(--t-sub); }
.laccolith-detail-layout { max-width: 1200px; margin: 20px auto; padding: 0 20px; display: flex; gap: 40px; }
.laccolith-detail-main { flex: 1; min-width: 0; }
.laccolith-detail-title { font-size: 24px; font-weight: bold; margin: 0 0 10px 0; }
.laccolith-detail-meta { font-size: 12px; color: var(--t-sub); margin-bottom: 25px; }
.laccolith-checkout-panel { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 30px; margin-bottom: 30px; display: flex; gap: 30px; }
.laccolith-detail-left { width: 35%; flex-shrink: 0; }
.laccolith-detail-img-box { background: #ffffff; border: 1px solid var(--t-border); border-radius: 4px; padding: 30px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; }
.laccolith-detail-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.laccolith-badges { display: flex; justify-content: space-between; margin-top: 20px; gap: 10px; }
.laccolith-badge-item { flex: 1; text-align: center; font-size: 11px; font-weight: bold; padding: 8px 0; background: #e0f2fe; border: 1px solid #bae6fd; color: var(--t-accent); border-radius: 2px; }
.laccolith-detail-right { flex: 1; }
.laccolith-price-row { background: #f8fafc; padding: 15px 20px; border-radius: 4px; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.laccolith-price-label { font-size: 13px; color: var(--t-sub); }
.laccolith-price-val { font-size: 26px; color: var(--t-accent); font-weight: bold; }
.laccolith-stock-val { font-size: 12px; color: var(--t-sub); }
.laccolith-form-item { margin-bottom: 15px; }
.laccolith-form-item label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 6px; }
.laccolith-input { width: 100%; height: 38px; border: 1px solid var(--t-border); border-radius: 4px; padding: 0 12px; box-sizing: border-box; outline: none; }
.laccolith-input:focus { border-color: var(--t-accent); }
.laccolith-btn-submit { width: 100%; height: 44px; background: var(--t-accent); color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; transition: background 0.2s; }
.laccolith-btn-submit:hover { background: #0b7369; }
.laccolith-btn-submit:disabled { background: #cbd5e1; cursor: not-allowed; }
.laccolith-desc-section { margin-top: 30px; }
.laccolith-desc-title { font-size: 16px; font-weight: bold; margin-bottom: 15px; border-bottom: 1px solid var(--t-border); padding-bottom: 10px; }
.laccolith-desc-content { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 30px; line-height: 1.8; color: #333; }
.laccolith-detail-sidebar { width: 280px; flex-shrink: 0; }
.laccolith-mini-search { display: flex; gap: 8px; }
.laccolith-btn-search { background: var(--t-accent); color: #fff; border: none; border-radius: 4px; padding: 0 15px; cursor: pointer; font-weight: bold; }
.laccolith-password-container { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.laccolith-password-card { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 40px; }
.laccolith-password-title { font-size: 18px; font-weight: bold; margin: 0 0 25px 0; text-align: center; }
.laccolith-wholesale-trigger { color: var(--t-accent); cursor: pointer; font-size: 13px; margin-bottom: 15px; font-weight: bold; }
.laccolith-wholesale-popup { padding: 20px; }
.laccolith-wholesale-popup-title { font-size: 14px; font-weight: bold; margin-bottom: 15px; }
.laccolith-group-wrap { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.laccolith-group-title { font-size: 18px; font-weight: bold; margin-bottom: 20px; }
.laccolith-group-container { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; overflow: hidden; }
.laccolith-table-header { display: flex; background: #f8fafc; border-bottom: 1px solid var(--t-border); padding: 12px 20px; font-weight: bold; color: var(--t-sub); font-size: 13px; }
.laccolith-th-item { flex: 1; }
.laccolith-table-row { display: flex; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--t-border); }
.laccolith-table-row:last-child { border-bottom: none; }
.laccolith-table-row:hover { background: #f8fafc; }
.laccolith-td-item { flex: 1; }
.laccolith-item-name a { font-weight: bold; }
.laccolith-item-name a:hover { color: var(--t-accent); }
.laccolith-type-tag { font-size: 11px; background: #f1f5f9; color: #475569; padding: 2px 6px; border-radius: 3px; }
.laccolith-type-auto { background: #e0f2fe; color: #0369a1; }
.laccolith-item-price { font-weight: bold; color: var(--t-accent); }
.laccolith-item-stock { color: var(--t-sub); }
.laccolith-btn-table { background: var(--t-accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.laccolith-btn-table:hover { background: #0a7369; color: #fff; }
.laccolith-btn-disabled { background: #cbd5e1; cursor: not-allowed; }
.laccolith-btn-disabled:hover { background: #cbd5e1; color: #fff; }
.laccolith-checkout-wrap { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.laccolith-checkout-card { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 30px; margin-bottom: 20px; }
.laccolith-card-header { font-size: 16px; font-weight: bold; margin-bottom: 20px; border-bottom: 1px solid var(--t-border); padding-bottom: 10px; }
.laccolith-checkout-alert { background: #fef2f2; border: 1px solid #fee2e2; color: #ef4444; padding: 15px; border-radius: 4px; font-size: 13px; }
.laccolith-checkout-return { color: var(--t-sub); font-size: 13px; }
.laccolith-checkout-return:hover { color: var(--t-accent); }
.laccolith-checkout-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--t-border); }
.laccolith-checkout-row:last-of-type { border-bottom: none; }
.laccolith-checkout-total { font-weight: bold; font-size: 18px; color: var(--t-accent); border-top: 1px solid var(--t-border); padding-top: 20px; margin-top: 10px; }
.laccolith-success-title { color: #10b981; font-size: 18px; font-weight: bold; margin-bottom: 20px; }
.laccolith-checkout-btn { width: 100%; height: 44px; background: var(--t-accent); color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; }
.laccolith-pay-select-title { font-size: 14px; font-weight: bold; color: var(--t-sub); text-align: center; margin-bottom: 20px; }
.laccolith-pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.laccolith-pay-button { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.laccolith-pay-button:hover { border-color: var(--t-accent); }
.laccolith-pay-button img { height: 24px; }
.laccolith-query-card { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; padding: 30px; }
.laccolith-query-tip { background: #f0fdf4; border: 1px solid #dcfce7; color: #15803d; padding: 12px; border-radius: 4px; font-size: 13px; margin-bottom: 20px; }
.laccolith-query-table { border: 1px solid var(--t-border); border-radius: 4px; overflow: hidden; }
.laccolith-query-header-row { display: flex; background: #f8fafc; border-bottom: 1px solid var(--t-border); padding: 12px 15px; font-weight: bold; color: var(--t-sub); }
.laccolith-query-col { flex: 1; }
.laccolith-query-data-row { display: flex; align-items: center; padding: 15px; }
.laccolith-query-btn { background: var(--t-accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-size: 12px; font-weight: bold; border: none; cursor: pointer; }
.laccolith-query-back { color: var(--t-sub); font-size: 12px; }
.laccolith-query-back:hover { color: var(--t-accent); }
.laccolith-query-empty { text-align: center; padding: 40px 0; color: var(--t-sub); }
.laccolith-query-container { background: var(--t-card); border: 1px solid var(--t-border); border-radius: 4px; overflow: hidden; }
.laccolith-query-tabs { display: flex; background: #f8fafc; border-bottom: 1px solid var(--t-border); }
.laccolith-query-tab-link { flex: 1; text-align: center; padding: 15px 0; color: var(--t-sub); font-weight: bold; border-bottom: 2px solid transparent; }
.laccolith-query-tab-link:hover { color: var(--t-accent); }
.laccolith-query-tabs .laccolith-active { color: var(--t-accent); border-bottom-color: var(--t-accent); background: var(--t-card); }
.laccolith-query-body { padding: 30px; }
.laccolith-query-info { background: #f8fafc; border: 1px solid var(--t-border); padding: 12px; border-radius: 4px; font-size: 12px; color: var(--t-sub); margin-bottom: 25px; text-align: center; }
.laccolith-mobile-order-card { border: 1px solid var(--t-border); background: #f8fafc; padding: 15px; border-radius: 4px; margin-bottom: 10px; }
.laccolith-mobile-card-title { display: flex; justify-content: space-between; font-weight: bold; cursor: pointer; }
@media (max-width: 900px) {
    .laccolith-home-container { padding: 0; flex-direction: column; gap: 20px; }
    .laccolith-sidebar { width: 100%; }
    .laccolith-hero-section { flex-direction: column; gap: 20px; }
    .laccolith-hero-left { width: 100%; }
    .laccol-tile-grid { grid-template-columns: repeat(2, 1fr); }
    .laccol-split-layout { flex-direction: column; gap: 20px; }
    .laccol-col-left { width: 100%; }
    .laccol-col-middle { width: 100%; }
    .laccol-col-right { width: 100%; }
    .shale-feed-grid { grid-template-columns: repeat(2, 1fr); }
    .laccolith-detail-layout { flex-direction: column; gap: 20px; }
    .laccolith-detail-sidebar { width: 100%; }
    .laccolith-checkout-panel { flex-direction: column; gap: 20px; }
    .laccolith-detail-left { width: 100%; }
}
@media (max-width: 600px) {
    .laccol-tile-grid { grid-template-columns: 1fr; }
    .shale-feed-grid { grid-template-columns: 1fr; }
    .laccol-right-row { flex-direction: column; align-items: flex-start; gap: 8px; position: relative; padding: 15px; }
    .laccol-right-price { position: absolute; right: 15px; bottom: 15px; }
    .laccol-col-middle-row { flex-direction: column; align-items: flex-start; gap: 8px; position: relative; padding: 15px; }
    .laccol-mid-price { margin-right: 0; }
    .laccol-table-header { display: none; }
    .laccol-table-row { flex-direction: column; align-items: flex-start; gap: 8px; position: relative; padding: 20px; }
    .laccol-td-item { width: 100%; text-align: left; }
    .laccol-btn-table { position: absolute; right: 20px; bottom: 20px; }
    .laccolith-footer-inner { flex-direction: column; gap: 15px; }
}
