/* ============================================
   Metallic Theme Variables & Base
   ============================================ */

.agx-theme-bg {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.agx-navbar-shop a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Navigation bar styles - Metallic Steel Theme */
.agx-nav {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.18) !important;
}

.navbar-toggle {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.navbar-toggle .icon-bar {
    background-color: #ffffff !important;
}

.ags-slider-wrapper {
    background: rgba(100, 110, 120, 0.1);
}

.ags-slidermsg-wrapper {
    position: absolute;
    color: white;
    bottom: 0px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.ags-slider-msg {
    background: rgba(0, 0, 0, 0.6);
    padding: 12px;
    font-weight: 600;
    width: 100%;
    display: inline-block;
    border-radius: 0 0 12px 12px;
}

.ags-slider-msg {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px;
    padding: 10px;
    font-weight: bolder;
    width: 100%;
    display: inline-block;
}

.navbar-toggle .icon-bar {
    background: white;
}
/* ============================================
   ItemDetail.vue Styles
   ============================================ */

/* Page Layout */
.item-detail-page {
    min-height: 100vh;
    background: #e8eaed;
}

/* Modal Overlay & Animations */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.modal-fade-enter-active,
.modal-fade-leave-active {
    transition: opacity 0.3s ease;
}
.modal-fade-enter-active .alert-modal,
.modal-fade-leave-active .alert-modal,
.modal-fade-enter-active .qa-modal,
.modal-fade-leave-active .qa-modal {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-fade-enter,
.modal-fade-leave-to {
    opacity: 0;
}
.modal-fade-enter .alert-modal,
.modal-fade-leave-to .alert-modal,
.modal-fade-enter .qa-modal,
.modal-fade-leave-to .qa-modal {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
}

/* Alert Modal */
.alert-modal {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.alert-icon {
    font-size: 3em;
    color: #28a745;
    margin-bottom: 12px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.alert-message {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.alert-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9em;
}

.alert-btn-primary {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.alert-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.4);
}

.alert-btn-secondary {
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
}
.alert-btn-secondary:hover {
    background: #d8dadd;
}

/* Slider Container */
.slider-container {
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Product Section */
.product-section {
    width: 100%;
    padding: 20px 16px;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Category Badges */
.category-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.badge-outline {
    background: transparent;
    color: #5d7b8a;
    border: 2px solid #5d7b8a;
}

/* Product Title */
.product-title {
    font-size: 1.8em;
    font-weight: 800;
    color: #2c3e50;
    margin: 12px 0 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Price & Action Row */
.price-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #7a4a2a 0%, #b87333 25%, #daa06d 50%, #b87333 75%, #7a4a2a 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.45);
    background: linear-gradient(135deg, #8a5a3a 0%, #c9884a 25%, #e8b880 50%, #c9884a 75%, #8a5a3a 100%);
}

.btn-add-to-cart:active {
    transform: translateY(0) scale(0.98);
}

/* Meta Section (Labels & Tags) */
.meta-section {
    margin-top: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.shop-news {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #d0d0d0;
}

.news-item {
    padding: 12px 16px;
    background: linear-gradient(135deg, #c8c8c8 0%, #e0e0e0 25%, #d4d4d4 50%, #e0e0e0 75%, #c8c8c8 100%);
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.5);
}

.news-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.news-content {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Q&A Button & Modal */
.qa-trigger {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn-qa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #5d7b8a;
    color: #5d7b8a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-qa:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border-color: #3a4a5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.qa-modal-overlay {
    padding-top: 50px;
}

.qa-modal {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.qa-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.qa-modal-header h3 {
    margin: 0;
    font-weight: 700;
}

.qa-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.qa-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.qa-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
    margin: 24px 0;
}

/* Tabs Section */
.tabs-section {
    width: 100%;
    padding: 0 16px 40px;
}

.tab-nav {
    display: flex;
    gap: 4px;
    background: white;
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}

.tab-btn {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9em;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: #5d7b8a;
    background: #f0f3f5;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.tab-btn .glyphicon {
    font-size: 0.9em;
}

/* Tab Content */
.tab-content-wrapper {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    border: 1px solid rgba(0,0,0,0.04);
}

.tab-fade-enter-active,
.tab-fade-leave-active {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.tab-fade-enter {
    opacity: 0;
    transform: translateX(10px);
}
.tab-fade-leave-to {
    opacity: 0;
    transform: translateX(-10px);
}

.tab-pane.pre-line {
    white-space: pre-line;
}

.html-content {
    line-height: 1.7;
    color: #444;
}

/* Detail Extras (Videos, Links) */
.detail-extras {
    margin-top: 24px;
}

.section-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title .glyphicon {
    color: #5d7b8a;
}

/* Media Grid */
.media-section {
    margin-bottom: 24px;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.media-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #ededed;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.02);
}

.media-item.media-half {
    width: calc(50% - 6px);
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.link-card {
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.link-card.link-full {
    width: 100%;
}

.link-card.link-half {
    width: calc(50% - 6px);
}

/* ItemDetail Responsive Adjustments */
@media (max-width: 576px) {
    .product-title {
        font-size: 1.4em;
    }

    .tab-btn {
        padding: 12px 8px;
        font-size: 0.8em;
    }

    .tab-btn .glyphicon {
        display: none;
    }

    .media-item.media-half,
    .link-card.link-half {
        width: 100%;
    }

    .alert-actions {
        flex-direction: column;
    }

    .price-action-row {
        flex-direction: column;
        gap: 12px;
    }
}


/* ============================================
   FilterMenuForm.vue Styles
   ============================================ */

/* Filter Menu Form - Aligned with metallic theme */
.filter-menu-form {
    height: 100%;
    padding: 8px;
}

.filter-menu-inner {
    position: static;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto;
}

/* Search Bar */
.search-bar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #e8eaed;
    padding: 8px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.search-group {
    display: flex;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-input {
    flex: 1;
    min-width: 0;
    text-align: left;
    border: 1px solid #c0c0c0;
    border-right: none;
    padding: 10px 14px;
    font-size: 0.9em;
    outline: none;
    border-radius: 10px 0 0 10px;
    background: white;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    border-color: #5d7b8a;
}

.search-btn {
    width: 80px;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.search-btn:hover {
    opacity: 0.9;
}

.clear-btn {
    width: 50px;
    padding: 0;
    font-weight: bolder;
    background: #e8eaed;
    color: #555;
    border: none;
    border-left: 1px solid #c0c0c0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.clear-btn:hover {
    background: #d8dadd;
}

.toggle-btn {
    width: 40px;
    height: auto;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.toggle-btn:hover {
    opacity: 0.9;
}

/* Level One Menu */
.level-one-menu {
    display: flex;
    width: 100%;
    flex-direction: row;
    overflow-y: auto;
    border-bottom: 2px solid #e0e0e0;
    border-top: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}

.level-one-item {
    padding: 4px;
    min-width: 200px;
    margin: 0 auto;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.level-one-active {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* Level Two (commented out in template) */
.level-two-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
}

.level-two-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(93, 123, 138, 0.12);
}

.level-two-item {
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    padding: 4px;
    background: white;
}

/* Filter Panel */
.filter-panel {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.filter-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.filter-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sorting */
.sort-row {
    display: flex;
    align-items: center;
}

.sort-btn {
    display: inline-block;
    padding: 12px 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
    border-right: 1px solid #e0e0e0;
}

.sort-btn:hover {
    color: #5d7b8a;
}

.sort-active {
    color: #5d7b8a !important;
}

.sort-select-wrap {
    flex: 1;
}

.sort-select {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 0.9em;
    color: #333;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Filter Category Headers */
.filter-category-header {
    display: block;
    padding: 12px 16px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    font-weight: 600;
    border-radius: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Bottom Search Bar */
.search-bar-bottom {
    background: white;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

/* FilterMenuForm Responsive */
@media (max-width: 576px) {
    .search-btn {
        width: 60px;
        font-size: 0.8em;
    }

    .clear-btn {
        width: 40px;
    }
}


/* ============================================
   AppStartV2.vue Styles
   ============================================ */

/* App Root */
.app-start-root {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Brand Link */
.shop-brand-link {
    color: white !important;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.shop-brand-link:hover {
    opacity: 0.9;
}

/* Nav Search */
.nav-search-brand {
    float: right;
}

/* Side Menu Items */
.side-menu-item {
    display: block;
    width: 100%;
    height: 50px;
    padding: 14px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: background 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.side-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.side-menu-item-lg {
    height: 80px;
    padding: 29px 12px;
}

.side-menu-icon {
    font-size: 2em;
}

.side-menu-clickable {
    cursor: pointer;
}

/* Side Search Button */
.side-search-btn-wrap {
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
}

.side-search-btn {
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.side-search-btn:hover {
    opacity: 0.8;
}

/* Left Body Container */
.left-body-container {
    position: relative;
    height: 100%;
    border-right: 1px solid #d0d0d0;
    overflow-y: auto;
    background: #e8eaed;
}

.left-body-container.with-filter{
    padding-top: 85px;
}

.left-body-filter-shadow {
    position: absolute;
    top: 1px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

.left-body-listing {
    position: relative;
    height: 100%;
    overflow: auto;
    padding-top: 6px;
}

/* Body Container */
.body-container {
    width: 100%;
    max-height: 100%;
}

/* No Match Alert */
.no-match-alert {
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    color: #555;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.04);
}

.no-match-alert .glyphicon {
    color: #8a5a3a;
    margin-right: 8px;
    font-size: 1.2em;
}

/* Contact Trigger Button */
.contact-trigger-wrap {
    position: fixed;
    bottom: 6px;
    right: 10px;
    text-align: center;
    z-index: 100;
}

.contact-trigger-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(90, 110, 130, 0.4);
    transition: all 0.3s ease;
}

.contact-trigger-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(90, 110, 130, 0.5);
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 12345;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

.contact-modal {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    width: 90%;
    max-width: 700px;
    height: 80vh;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.contact-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-modal-title {
    font-weight: 700;
    font-size: 1.1em;
}

.contact-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* AppStartV2 Modal Fade Animation */
.app-start-root .modal-fade-enter-active,
.app-start-root .modal-fade-leave-active {
    transition: opacity 0.3s ease;
}
.app-start-root .modal-fade-enter-active .contact-modal,
.app-start-root .modal-fade-leave-active .contact-modal {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.app-start-root .modal-fade-enter,
.app-start-root .modal-fade-leave-to {
    opacity: 0;
}
.app-start-root .modal-fade-enter .contact-modal,
.app-start-root .modal-fade-leave-to .contact-modal {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
}

/* Bottom Share Button */
.bottom-share-btn {
    font-weight: bolder;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* AppStartV2 Responsive */
@media (max-width: 576px) {
    .contact-modal {
        width: 95%;
        height: 85vh;
    }

    .contact-trigger-btn {
        width: 48px;
        height: 48px;
    }

    .contact-trigger-btn img {
        height: 24px !important;
    }
}
/* ============================================
   AddToCart.vue Styles
   ============================================ */

/* Wrapper namespace to avoid conflicts */
.agx-add-to-cart-wrap {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
}

/* Cart Alert Box */
.agx-add-to-cart-wrap .cart-alert-box {
    background: white;
    max-width: 500px;
    margin: 10px auto 0px;
    text-align: center;
    padding: 16px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Cart Panel */
.agx-add-to-cart-wrap .cart-panel {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Cart Title */
.agx-add-to-cart-wrap .cart-title {
    font-weight: bold;
    font-size: 1.05em;
    color: #2c3e50;
}

/* Cart Price Display */
.agx-add-to-cart-wrap .cart-price-value {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

/* Add to Cart Button */
.agx-add-to-cart-wrap .btnAddToCart {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.agx-add-to-cart-wrap .btnAddToCart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.4);
}

/* Cart Labels */
.agx-add-to-cart-wrap .cart-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    font-size: 0.9em;
}

/* Inline Property Labels */
.agx-add-to-cart-wrap .cart-label-inline {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
    margin: 2px 4px 2px 0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* Property Selection Buttons */
.agx-add-to-cart-wrap .cart-prop-btn {
    display: inline-block;
    background: white;
    border: 2px solid #c0c0c0;
    color: #555;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 4px 4px 4px 0;
}

.agx-add-to-cart-wrap .cart-prop-btn:hover {
    border-color: #5d7b8a;
    color: #5d7b8a;
}

/* Selected Property Button */
.agx-add-to-cart-wrap .cart-prop-btn-selected {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border-color: #3a4a5c;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.agx-add-to-cart-wrap .cart-prop-btn-selected:hover {
    color: white;
}

/* Close Button */
.agx-add-to-cart-wrap .act-close-btn {
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.agx-add-to-cart-wrap .act-close-btn:hover {
    background: #d8dadd;
}

/* AddToCart Responsive */
@media (max-width: 576px) {
    .agx-add-to-cart-wrap {
        width: 95%;
    }
}
/* ============================================
   PagedCartItems.vue & PagedCartItemsLocal.vue Styles
   ============================================ */

/* Namespace wrapper for cart pages */
.pci-cart-wrapper {
    width: 100%;
    padding: 16px 12px;
}

/* ── Toolbar ── */
.pci-toolbar {
    width: 100%;
    padding: 10px 12px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.pci-toolbar-left {
    margin-right: auto;
}

.pci-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.pci-btn-refresh {
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
}

.pci-btn-refresh:hover {
    background: #d8dadd;
}

.pci-btn-primary {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.pci-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.4);
}

.pci-btn-primary.disabled,
.pci-btn-primary[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pci-btn-primary.disabled:hover,
.pci-btn-primary[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.pci-arrow {
    color: #999;
    font-size: 0.8em;
}

.pci-alert-msg {
    width: 100%;
    color: #c0392b;
    font-weight: 600;
    font-size: 0.9em;
    text-align: right;
    padding: 4px 0;
}

/* ── Selected Contact Card ── */
.pci-contact-card {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(93, 123, 138, 0.25);
    border-left: 4px solid #5d7b8a;
}

.pci-contact-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.pci-contact-title {
    font-weight: 700;
    color: #555;
    font-size: 0.95em;
}

.pci-contact-detail {
    padding-left: 8px;
    color: #444;
    line-height: 1.7;
}

.pci-contact-detail .pci-label {
    font-weight: 700;
    color: #2c3e50;
}

.pci-contact-address-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
}

.pci-pickup-section {
    padding-left: 16px;
    margin-top: 8px;
    border-left: 3px solid rgba(93, 123, 138, 0.3);
}

.pci-pickup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* ── Selection Controls ── */
.pci-selection-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 8px 12px;
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.pci-selection-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
}

.pci-selection-divider {
    width: 1px;
    height: 24px;
    background: #d0d0d0;
}

.pci-check-icon {
    height: 32px;
    width: 32px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 4px;
}

.pci-check-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* ── Shop Group Card ── */
.pci-shop-group {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.pci-shop-group:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pci-shop-header {
    padding: 16px 20px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.pci-shop-name {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.pci-btn-terms {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.pci-btn-terms:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Cart Item Row ── */
.pci-item-row {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    transition: background 0.2s ease;
    gap: 12px;
    flex-wrap: wrap;
}

.pci-item-row:first-of-type {
    border-top: none;
}

.pci-item-row:hover {
    background: rgba(93, 123, 138, 0.04);
}

/* Selected state */
.pci-item-row.act-selected {
    background: rgba(93, 123, 138, 0.08);
}

/* Left column – image & remove */
.pci-item-image-col {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pci-btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.pci-btn-remove:hover {
    background: #c0392b;
    color: white;
    border-color: #c0392b;
    transform: scale(1.1);
}

.pci-item-thumb-link {
    display: block;
    text-decoration: none;
}

.pci-item-thumb {
    max-width: 100%;
    max-height: 100px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.pci-item-thumb:hover {
    transform: scale(1.05);
}

/* Middle column – info */
.pci-item-info-col {
    flex: 1;
    min-width: 0;
}

.pci-item-title-link {
    display: inline-block;
    font-weight: 700;
    font-size: 1em;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
    margin-bottom: 6px;
}

.pci-item-title-link:hover {
    color: #5d7b8a;
}

.pci-item-props {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.pci-item-prop {
    display: inline-block;
    background: #f0f3f5;
    color: #555;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.pci-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pci-item-price {
    font-size: 1.15em;
    font-weight: 700;
    color: #8a5a3a;
}

.pci-item-quant-label {
    color: #999;
    font-size: 0.9em;
}

.pci-item-quant-input {
    width: 56px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease;
    background: white;
}

.pci-item-quant-input:focus {
    border-color: #5d7b8a;
    box-shadow: 0 0 0 2px rgba(93, 123, 138, 0.15);
}

/* Right column – checkbox */
.pci-item-check-col {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pci-item-checkbox {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pci-item-checkbox:hover {
    transform: scale(1.1);
}

.pci-item-checkbox img {
    height: 28px;
    width: 28px;
}

/* ── Policies Modal ── */
.pci-policies-overlay {
    background: white;
    margin: 0 auto;
    width: 80%;
    overflow-y: auto;
    height: 80%;
    margin-top: 50px;
    padding: 24px;
    border-radius: 16px;
}

.pci-policies-close-bar {
    text-align: right;
    margin-bottom: 12px;
}

.pci-policies-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pci-policies-close-btn:hover {
    background: #d8dadd;
    transform: scale(1.1);
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .pci-toolbar {
        padding: 8px;
        gap: 6px;
    }

    .pci-btn {
        padding: 8px 14px;
        font-size: 0.85em;
    }

    .pci-item-row {
        padding: 12px;
        gap: 8px;
    }

    .pci-item-image-col {
        flex: 0 0 90px;
    }

    .pci-item-thumb {
        max-height: 80px;
    }

    .pci-shop-header {
        padding: 12px 16px;
    }

    .pci-shop-name {
        font-size: 1em;
    }

    .pci-contact-card {
        padding: 12px 14px;
    }

    .pci-selection-row {
        gap: 8px;
        padding: 6px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pci-check-icon {
        height: 28px;
        width: 28px;
    }
}
/* ============================================
   PagedContactCore.vue Styles
   ============================================ */

/* Wrapper */
.pcc-wrapper {
    height: 100%;
    padding: 6px;
    padding-top: 0;
}

/* Sticky Toolbar */
.pcc-toolbar {
    position: sticky;
    top: 0;
    background: white;
    z-index: 99;
    padding: 16px 20px;
    border-bottom: 1px solid #d0d0d0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.pcc-btn-add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.pcc-btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.4);
}

.pcc-btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    float: right;
}

.pcc-btn-refresh:hover {
    background: #d8dadd;
}

/* Items Container */
.pcc-items-container {
    padding: 6px;
}

/* Item Card */
.pcc-item-card {
    margin-top: 8px;
    cursor: pointer;
    background: white;
    border-radius: 12px;
    min-height: 100px;
    padding: 14px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.pcc-item-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* Item Title */
.pcc-item-title {
    font-weight: 700;
    text-align: right;
    color: #888;
    font-size: 0.95em;
    margin-bottom: 6px;
}

/* Item Detail */
.pcc-item-detail {
    padding-left: 10px;
    color: #444;
    line-height: 1.7;
}

/* Inline Labels */
.pcc-label {
    font-weight: 700;
    color: #2c3e50;
}

/* Pickup Section */
.pcc-pickup-section {
    padding-left: 16px;
    margin-top: 6px;
    border-left: 3px solid rgba(93, 123, 138, 0.3);
}

.pcc-pickup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* PagedContactCore Responsive */
@media (max-width: 576px) {
    .pcc-toolbar {
        padding: 12px 14px;
    }

    .pcc-btn-add,
    .pcc-btn-refresh {
        padding: 8px 14px;
        font-size: 0.85em;
    }

    .pcc-item-card {
        padding: 10px 12px;
        min-height: 80px;
    }

    .pcc-item-detail {
        padding-left: 6px;
        font-size: 0.9em;
    }
}
/* ============================================
   ContactEditor.vue Styles
   ============================================ */

/* Wrapper */
.ce-wrapper {
    width: 100%;
    padding: 0;
}

/* Form Panel */
.ce-form-panel {
    text-align: left;
    padding: 16px;
}

/* Section Title */
.ce-section-title {
    font-weight: 700;
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 16px;
}

/* Pickup modal title */
.ce-pickup-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 12px;
}

/* Form Inputs */
.ce-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    font-size: 0.95em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    margin-bottom: 10px;
    color: #333;
}

.ce-input:focus {
    border-color: #5d7b8a;
    box-shadow: 0 0 0 2px rgba(93, 123, 138, 0.15);
}

.ce-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    font-size: 0.95em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    min-height: 100px;
    resize: vertical;
    color: #333;
}

.ce-textarea:focus {
    border-color: #5d7b8a;
    box-shadow: 0 0 0 2px rgba(93, 123, 138, 0.15);
}

/* Select Dropdown */
.ce-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    font-size: 0.95em;
    outline: none;
    background: white;
    color: #333;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ce-select:focus {
    border-color: #5d7b8a;
}

/* Phone Input Group */
.ce-phone-group {
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.ce-phone-area-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    white-space: nowrap;
    border-radius: 10px 0 0 10px;
}

.ce-phone-area-btn:hover {
    opacity: 0.9;
}

.ce-phone-area-btn .glyphicon {
    font-size: 0.75em;
}

.ce-phone-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid #c0c0c0;
    border-left: none;
    border-radius: 0 10px 10px 0;
    font-size: 0.95em;
    outline: none;
    background: white;
    color: #333;
    transition: border-color 0.2s ease;
}

.ce-phone-input:focus {
    border-color: #5d7b8a;
}

/* Address Tab Section */
.ce-address-wrapper {
    margin-top: 10px;
    background: white;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Tab Navigation */
.ce-tab-nav {
    display: flex;
    gap: 4px;
    padding: 6px;
    border-radius: 12px;
    background: #f5f5f5;
    margin-bottom: 4px;
}

.ce-tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9em;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.ce-tab-btn:hover {
    color: #5d7b8a;
    background: rgba(93, 123, 138, 0.08);
}

.ce-tab-btn-active {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.ce-tab-btn-active:hover {
    color: white;
}

/* Tab Content Area */
.ce-tab-content {
    padding: 8px;
    min-height: 160px;
}

/* City / Pickup Selector Buttons */
.ce-selector-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: white;
    border: 2px solid #5d7b8a;
    color: #5d7b8a;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.ce-selector-btn:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border-color: #3a4a5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.ce-selector-btn .glyphicon {
    font-size: 0.75em;
}

/* Pickup Display Card */
.ce-pickup-display {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    padding: 14px 16px;
    min-height: 100px;
}

.ce-pickup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.ce-pickup-title-text {
    font-weight: 700;
    font-size: 1em;
    color: #2c3e50;
    margin-bottom: 4px;
}

.ce-pickup-detail {
    padding-left: 10px;
    color: #444;
    line-height: 1.7;
    font-size: 0.95em;
}

/* Add Button */
.ce-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
}

.ce-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 110, 130, 0.45);
}

.ce-add-btn:active {
    transform: translateY(0);
}

/* Action Bar */
.ce-action-bar {
    text-align: right;
    margin-top: 16px;
}

/* Error / Validation Message */
.ce-error-msg {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 8px;
}

/* ContactEditor Responsive */
@media (max-width: 576px) {
    .ce-form-panel {
        padding: 12px;
    }

    .ce-tab-btn {
        padding: 8px 10px;
        font-size: 0.85em;
    }

    .ce-phone-area-btn {
        padding: 10px 10px;
        font-size: 0.85em;
    }

    .ce-selector-btn {
        padding: 8px 14px;
        font-size: 0.85em;
    }

    .ce-add-btn {
        width: 100%;
        padding: 12px;
    }
}
/* ============================================
   PagedOrders.vue Styles
   ============================================ */

/* Namespace wrapper */
.po-wrapper {
    width: 100%;
    padding: 16px 12px;
}

/* ── Toolbar ── */
.po-toolbar {
    width: 100%;
    padding: 10px 12px;
    text-align: right;
    margin-bottom: 16px;
}

.po-btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
}

.po-btn-refresh:hover {
    background: #d8dadd;
}

/* ── Orders List ── */
.po-orders-list {
    width: 100%;
}

/* ── Order Card ── */
.po-order-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.po-order-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ── Order Header ── */
.po-order-header {
    padding: 16px 20px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.03) 1px,
            rgba(255,255,255,0.03) 2px
        ),
        linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.po-shop-name {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.po-order-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9em;
    opacity: 0.9;
}

.po-order-meta-label {
    font-weight: 600;
}

.po-order-meta-date {
    color: rgba(255,255,255,0.8);
}

/* ── Items Section ── */
.po-items-section {
    padding: 0;
}

/* ── Item Row ── */
.po-item-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
    gap: 12px;
}

.po-item-row:last-of-type {
    border-bottom: none;
}

.po-item-row:hover {
    background: rgba(93, 123, 138, 0.04);
}

/* ── Item Info (title + props) ── */
.po-item-info {
    flex: 1;
    min-width: 0;
}

.po-item-title-row {
    margin-bottom: 4px;
}

.po-item-index {
    font-weight: 700;
    color: #2c3e50;
}

.po-item-title {
    color: #2c3e50;
    font-weight: 500;
}

.po-item-props {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.po-item-prop {
    display: inline-block;
    background: #f0f3f5;
    color: #555;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

/* ── Item Price & Quant ── */
.po-item-price {
    flex: 0 0 auto;
    font-size: 1.05em;
    font-weight: 700;
    color: #8a5a3a;
    text-align: right;
    min-width: 60px;
}

.po-item-quant {
    flex: 0 0 auto;
    font-size: 0.95em;
    font-weight: 600;
    color: #555;
    text-align: right;
    min-width: 50px;
}

/* ── Order Messages ── */
.po-order-msgs {
    padding: 14px 20px;
    border-top: 1px solid #eee;
}

.po-buyer-msg {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 6px;
}

.po-shop-msg {
    color: #555;
    font-size: 0.9em;
}

.po-shop-msg-text {
    color: #c0392b;
    font-weight: 600;
}

/* ── Order Footer ── */
.po-order-footer {
    padding: 14px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.po-order-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.po-order-link:hover {
    background: #e8eaed;
    text-decoration: none;
}

.po-order-state {
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
}

.po-chevron {
    color: #999;
    font-size: 0.8em;
}

.po-btn-detail {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.po-btn-detail:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.4);
}

/* ── PagedOrders Responsive ── */
@media (max-width: 576px) {
    .po-toolbar {
        padding: 8px;
    }

    .po-btn-refresh {
        padding: 8px 14px;
        font-size: 0.85em;
    }

    .po-order-header {
        padding: 12px 16px;
    }

    .po-shop-name {
        font-size: 1em;
    }

    .po-item-row {
        padding: 10px 12px;
        gap: 8px;
    }

    .po-item-price {
        font-size: 0.95em;
        min-width: 50px;
    }

    .po-item-quant {
        font-size: 0.85em;
        min-width: 40px;
    }

    .po-order-msgs {
        padding: 10px 12px;
    }

    .po-order-footer {
        padding: 10px 12px;
    }

    .po-order-link {
        padding: 6px 12px;
        gap: 6px;
    }

    .po-btn-detail {
        padding: 5px 12px;
        font-size: 0.8em;
    }
}
/* ============================================
   OrderDetail.vue Styles
   ============================================ */

/* Namespace wrapper */
.od-wrapper {
    width: 100%;
    padding: 16px 12px;
}

/* ── Toolbar ── */
.od-toolbar {
    width: 100%;
    padding: 10px 12px;
    text-align: right;
    margin-bottom: 12px;
}

.od-btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #e8eaed;
    color: #555;
    border: 1px solid #ccc;
}

.od-btn-refresh:hover {
    background: #d8dadd;
}

/* ── Order Card ── */
.od-order-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.od-order-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.od-order-body {
    padding: 20px 24px;
}

/* ── Order Header ── */
.od-order-header {
    margin-bottom: 20px;
}

.od-shop-name {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.od-order-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.od-order-num {
    font-weight: 700;
    color: #2c3e50;
}

.od-order-date {
    color: #888;
}

/* ── State Badge ── */
.od-state-wrap {
    font-size: 1.5em;
    width: 100%;
    text-align: right;
    margin-bottom: 16px;
}

.od-state-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.od-state-badge-warning {
    background: linear-gradient(135deg, #7a4a2a 0%, #b87333 25%, #daa06d 50%, #b87333 75%, #7a4a2a 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ── Items Section ── */
.od-items-section {
    margin-bottom: 16px;
}

/* ── Item Row ── */
.od-item-row {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    gap: 12px;
    flex-wrap: wrap;
}

.od-item-row:last-of-type {
    border-bottom: 1px solid #eee;
}

.od-item-row:hover {
    background: rgba(93, 123, 138, 0.04);
}

/* ── Item Index & Ref ── */
.od-item-header-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.od-item-index {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.95em;
}

.od-item-ref {
    color: #888;
    font-size: 0.75em;
    padding: 2px 8px;
    background: #f0f3f5;
    border-radius: 10px;
    font-weight: 500;
}

/* ── Item Image ── */
.od-item-image-col {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.od-item-image {
    display: inline-block;
    max-height: 100px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ── Item Info ── */
.od-item-info {
    flex: 1;
    min-width: 0;
}

.od-item-title {
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
}

.od-item-props {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.od-item-prop {
    display: inline-block;
    background: #f0f3f5;
    color: #555;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

/* ── Item Price & Quant ── */
.od-item-price {
    flex: 0 0 auto;
    font-size: 1.05em;
    font-weight: 700;
    color: #8a5a3a;
    text-align: right;
    min-width: 60px;
}

.od-item-subtotal {
    flex: 0 0 auto;
    font-size: 1.05em;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    min-width: 60px;
}

/* ── Extra Row ── */
.od-extra-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
}

.od-extra-spacer {
    flex: 1;
    min-width: 0;
}

.od-extra-name {
    flex: 0 0 auto;
    color: #555;
    font-size: 0.9em;
    font-weight: 500;
}

.od-extra-amount {
    flex: 0 0 auto;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95em;
    text-align: right;
    min-width: 60px;
}

/* ── Total Section ── */
.od-total-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 0;
    border-top: 2px solid #e0e0e0;
    margin-top: 8px;
}

.od-total-spacer {
    flex: 1;
}

.od-total-content {
    text-align: center;
}

.od-total-label {
    font-weight: 600;
    color: #555;
    font-size: 1em;
}

.od-total-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.15em;
}

.od-total-pending {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 600;
    background: linear-gradient(135deg, #7a4a2a 0%, #b87333 25%, #daa06d 50%, #b87333 75%, #7a4a2a 100%);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* ── Messages ── */
.od-msgs {
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.od-buyer-msg {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 6px;
}

.od-shop-msg {
    color: #555;
    font-size: 0.9em;
}

.od-shop-msg-text {
    color: #c0392b;
    font-weight: 600;
}

/* ── Contact Section ── */
.od-contact-section {
    padding: 14px 0;
    border-top: 1px solid #eee;
    line-height: 1.7;
}

.od-contact-info {
    color: #444;
}

.od-contact-label {
    font-weight: 700;
    color: #2c3e50;
}

.od-contact-delivery-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
}

.od-contact-address {
    color: #444;
    margin-bottom: 8px;
}

/* ── Pickup Section ── */
.od-pickup-section {
    padding-left: 16px;
    margin-top: 8px;
    border-left: 3px solid rgba(93, 123, 138, 0.3);
}

.od-pickup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.od-pickup-detail {
    color: #444;
    font-size: 0.9em;
}

/* ── Payment Section ── */
.od-payment-section {
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: 16px;
}

.od-payment-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.od-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.od-payment-option {
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.od-payment-option:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.od-payment-info {
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
    margin-bottom: 8px;
}

.od-payment-account {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.05em;
    margin-bottom: 16px;
    word-break: break-all;
}

.od-payment-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 15px rgba(90, 110, 130, 0.3);
}

.od-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 110, 130, 0.45);
}

.od-payment-btn:active {
    transform: translateY(0);
}

/* ── Selected Payment ── */
.od-selected-payment {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 16px;
}

.od-selected-payment-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.od-selected-payment-card {
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
    max-width: 320px;
    margin: 0 auto;
}

.od-selected-payment-card .od-payment-info {
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
    margin-bottom: 8px;
}

.od-selected-payment-card .od-payment-account {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.05em;
    margin-bottom: 16px;
}

.od-selected-payment-state {
    font-size: 1.5em;
    width: 100%;
}

.od-selected-payment-state .od-state-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a4a5c 25%, #7b8fa0 50%, #3a4a5c 75%, #1a1a2e 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ── OrderDetail Responsive ── */
@media (max-width: 576px) {
    .od-order-body {
        padding: 14px 16px;
    }

    .od-shop-name {
        font-size: 1.1em;
    }

    .od-item-row {
        padding: 10px 0;
        gap: 8px;
    }

    .od-item-image-col {
        flex: 0 0 80px;
    }

    .od-item-image {
        max-height: 80px;
    }

    .od-item-price,
    .od-item-subtotal {
        font-size: 0.95em;
        min-width: 50px;
    }

    .od-payment-option {
        max-width: 100%;
        padding: 16px 12px;
    }

    .od-payment-btn {
        padding: 8px 18px;
        font-size: 0.85em;
    }

    .od-btn-refresh {
        padding: 8px 14px;
        font-size: 0.85em;
    }

    .od-order-meta {
        gap: 8px;
        font-size: 0.85em;
    }

    .od-selected-payment-card {
        max-width: 100%;
    }
}