/* =====================================================================
   YD SOFT — Customer Tracking Portal
   Premium Design System v3.0
   Dark Slate + Gold Accent — Luxury Manufacturing Portal
   ===================================================================== */

/* --- Design Tokens --- */
:root {
    --yd-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --yd-bg: #f8f7f4;
    --yd-bg-card: #ffffff;
    --yd-bg-elevated: #faf9f7;
    --yd-bg-subtle: #f3f1ec;
    --yd-surface: #eae7df;
    --yd-border: #e2dfd7;
    --yd-border-light: #ece9e2;

    --yd-text-primary: #1a1714;
    --yd-text-secondary: #5c5647;
    --yd-text-tertiary: #8a8279;
    --yd-text-muted: #a89f93;

    --yd-accent: #b8965a;
    --yd-accent-light: #d4b87a;
    --yd-accent-glow: rgba(184, 150, 90, 0.15);
    --yd-accent-gradient: linear-gradient(135deg, #b8965a 0%, #d4b87a 100%);

    --yd-success: #3d8b5e;
    --yd-success-bg: #eef6f1;
    --yd-info: #4a7fb5;
    --yd-info-bg: #edf4fb;
    --yd-warning: #c08c3a;
    --yd-warning-bg: #fdf5e8;

    --yd-radius: 16px;
    --yd-radius-sm: 10px;
    --yd-radius-xs: 6px;
    --yd-shadow: 0 1px 3px rgba(26, 23, 20, 0.04), 0 4px 12px rgba(26, 23, 20, 0.03);
    --yd-shadow-lg: 0 4px 12px rgba(26, 23, 20, 0.06), 0 12px 40px rgba(26, 23, 20, 0.04);
    --yd-shadow-accent: 0 4px 20px rgba(184, 150, 90, 0.2);
    --yd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset for Portal --- */
.yd-portal *,
.yd-portal *::before,
.yd-portal *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.yd-portal {
    font-family: var(--yd-font);
    color: var(--yd-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px 60px;
}

/* =====================================================================
   SECTION 1: SEARCH FORM
   ===================================================================== */

.yd-search-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 40px 16px;
}

.yd-search-card {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--yd-shadow-lg);
    animation: ydFadeUp 0.6s ease-out both;
}

.yd-search-brand {
    text-align: center;
    margin-bottom: 36px;
}

.yd-search-brand-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--yd-accent-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--yd-shadow-accent);
}

.yd-search-brand-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yd-search-brand h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--yd-text-primary);
    letter-spacing: -0.6px;
    margin: 0 0 8px;
}

.yd-search-brand p {
    font-size: 15px;
    color: var(--yd-text-tertiary);
    line-height: 1.5;
    margin: 0;
}

/* Form Elements */
.yd-form-field {
    margin-bottom: 20px;
    position: relative;
}

.yd-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--yd-text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yd-form-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--yd-font);
    border: 1.5px solid var(--yd-border);
    border-radius: var(--yd-radius-sm);
    background: var(--yd-bg-elevated);
    color: var(--yd-text-primary);
    transition: var(--yd-transition);
    outline: none;
}

.yd-form-field input::placeholder {
    color: var(--yd-text-muted);
}

.yd-form-field input:focus {
    border-color: var(--yd-accent);
    background: var(--yd-bg-card);
    box-shadow: 0 0 0 4px var(--yd-accent-glow);
}

.yd-search-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--yd-font);
    color: #ffffff;
    background: var(--yd-accent-gradient);
    border: none;
    border-radius: var(--yd-radius-sm);
    cursor: pointer;
    transition: var(--yd-transition);
    margin-top: 8px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.yd-search-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.yd-search-btn:hover {
    box-shadow: var(--yd-shadow-accent);
    transform: translateY(-1px);
}

.yd-search-btn:hover::after {
    left: 100%;
}

.yd-search-btn:active {
    transform: translateY(0);
}

/* Error Messages */
.yd-error-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: var(--yd-radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    animation: ydShake 0.4s ease;
}

/* =====================================================================
   SECTION 2: ORDER DASHBOARD (After Successful Lookup)
   ===================================================================== */

/* --- Status Hero --- */
.yd-status-hero {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.5s ease-out both;
    position: relative;
    overflow: hidden;
}

.yd-status-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yd-accent-gradient);
}

.yd-status-hero-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.yd-status-hero-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.yd-status-hero-info h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--yd-text-primary);
    letter-spacing: -0.5px;
    margin: 0 0 4px;
}

.yd-status-hero-info p {
    font-size: 15px;
    color: var(--yd-text-secondary);
    margin: 0;
}

.yd-status-hero-order {
    font-size: 13px;
    color: var(--yd-text-muted);
    margin-top: 6px;
}

/* --- Production Timeline --- */
.yd-timeline-section {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.08s;
}

.yd-section-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--yd-text-muted);
    margin-bottom: 24px;
}

.yd-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 0 4px;
}

.yd-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Connector line between steps */
.yd-timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 18px);
    right: calc(-50% + 18px);
    height: 2px;
    background: var(--yd-surface);
    z-index: 0;
}

.yd-timeline-step.yd-step-done:not(:last-child)::after {
    background: var(--yd-accent);
}

.yd-timeline-step.yd-step-active:not(:last-child)::after {
    background: linear-gradient(90deg, var(--yd-accent), var(--yd-surface));
}

.yd-timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    transition: var(--yd-transition);
    background: var(--yd-bg-elevated);
    border: 2px solid var(--yd-border);
}

.yd-timeline-dot svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: var(--yd-text-muted);
}

/* Done step */
.yd-step-done .yd-timeline-dot {
    background: var(--yd-accent);
    border-color: var(--yd-accent);
}

.yd-step-done .yd-timeline-dot svg {
    stroke: #fff;
}

/* Active step */
.yd-step-active .yd-timeline-dot {
    background: var(--yd-accent);
    border-color: var(--yd-accent);
    box-shadow: 0 0 0 6px var(--yd-accent-glow), var(--yd-shadow-accent);
    animation: ydPulseRing 2.5s ease-in-out infinite;
}

.yd-step-active .yd-timeline-dot svg {
    stroke: #fff;
}

.yd-timeline-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--yd-text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.3;
    max-width: 80px;
}

.yd-step-done .yd-timeline-label {
    color: var(--yd-text-secondary);
}

.yd-step-active .yd-timeline-label {
    color: var(--yd-accent);
    font-weight: 700;
}

/* =====================================================================
   SECTION 3: ORDER DETAILS GRID
   ===================================================================== */

.yd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.16s;
}

.yd-detail-card {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius-sm);
    padding: 20px;
    box-shadow: var(--yd-shadow);
    transition: var(--yd-transition);
}

.yd-detail-card:hover {
    box-shadow: var(--yd-shadow-lg);
    transform: translateY(-2px);
}

.yd-detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--yd-text-muted);
    margin-bottom: 6px;
}

.yd-detail-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--yd-text-primary);
    letter-spacing: -0.3px;
}

.yd-detail-value.yd-accent-val {
    color: var(--yd-accent);
}

/* =====================================================================
   SECTION 4: PRODUCT CARDS
   ===================================================================== */

.yd-products-section {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.24s;
}

.yd-product-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--yd-bg-elevated);
    border: 1px solid var(--yd-border-light);
    border-radius: var(--yd-radius-sm);
    margin-bottom: 16px;
    transition: var(--yd-transition);
}

.yd-product-card:last-child {
    margin-bottom: 0;
}

.yd-product-card:hover {
    border-color: var(--yd-border);
    box-shadow: 0 2px 8px rgba(26, 23, 20, 0.04);
}

.yd-product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--yd-radius-sm);
    overflow: hidden;
    border: 1px solid var(--yd-border);
    background: var(--yd-bg-card);
}

.yd-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yd-product-info {
    flex: 1;
    min-width: 0;
}

.yd-product-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--yd-text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.yd-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.yd-product-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--yd-surface);
    color: var(--yd-text-secondary);
    letter-spacing: 0.3px;
}

.yd-product-tag.yd-tag-qty {
    background: var(--yd-accent-glow);
    color: var(--yd-accent);
}

/* Measurement Specs Grid */
.yd-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.yd-spec-item {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border-light);
    border-radius: var(--yd-radius-xs);
    padding: 12px;
    text-align: center;
    transition: var(--yd-transition);
}

.yd-spec-item:hover {
    border-color: var(--yd-accent);
    background: rgba(184, 150, 90, 0.03);
}

.yd-spec-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--yd-text-muted);
    margin-bottom: 4px;
}

.yd-spec-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--yd-text-primary);
    letter-spacing: -0.3px;
}

.yd-no-specs {
    color: var(--yd-text-tertiary);
    font-size: 14px;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

/* =====================================================================
   SECTION 5: SHIPMENT CARD
   ===================================================================== */

.yd-shipment-section {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.28s;
}

.yd-shipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.yd-shipment-item {
    padding: 16px;
    background: var(--yd-bg-elevated);
    border: 1px solid var(--yd-border-light);
    border-radius: var(--yd-radius-xs);
}

.yd-shipment-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--yd-text-muted);
    margin-bottom: 4px;
}

.yd-shipment-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--yd-text-primary);
    word-break: break-all;
}

/* =====================================================================
   SECTION 6: TRUST / REASSURANCE
   ===================================================================== */

.yd-trust-section {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.32s;
}

.yd-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.yd-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.yd-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--yd-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yd-trust-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--yd-accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yd-trust-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--yd-text-primary);
    margin: 0 0 3px;
}

.yd-trust-text p {
    font-size: 13px;
    color: var(--yd-text-tertiary);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================================
   SECTION 7: CHAT / MESSAGING
   ===================================================================== */

.yd-chat-section {
    background: var(--yd-bg-card);
    border: 1px solid var(--yd-border);
    border-radius: var(--yd-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--yd-shadow);
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.36s;
}

.yd-customer-chat-history {
    max-height: 360px;
    overflow-y: auto;
    padding: 16px;
    background: var(--yd-bg-elevated);
    border: 1px solid var(--yd-border-light);
    border-radius: var(--yd-radius-sm);
    margin-bottom: 20px;
    scroll-behavior: smooth;
}

.yd-customer-chat-history::-webkit-scrollbar {
    width: 5px;
}

.yd-customer-chat-history::-webkit-scrollbar-track {
    background: transparent;
}

.yd-customer-chat-history::-webkit-scrollbar-thumb {
    background: var(--yd-border);
    border-radius: 4px;
}

.yd-chat-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--yd-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.yd-chat-bubble {
    max-width: 80%;
    margin-bottom: 16px;
    animation: ydFadeUp 0.3s ease-out;
}

.yd-bubble-me {
    margin-left: auto;
}

.yd-bubble-store {
    margin-right: auto;
}

.yd-chat-meta {
    font-size: 11px;
    font-weight: 600;
    color: var(--yd-text-muted);
    margin-bottom: 4px;
    padding: 0 4px;
}

.yd-bubble-me .yd-chat-meta {
    text-align: right;
}

.yd-chat-meta span {
    font-weight: 400;
    margin-left: 8px;
}

.yd-chat-content {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}

.yd-bubble-me .yd-chat-content {
    background: var(--yd-accent);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.yd-bubble-store .yd-chat-content {
    background: var(--yd-surface);
    color: var(--yd-text-primary);
    border-bottom-left-radius: 4px;
}

/* Chat Composer */
.yd-customer-chat-composer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yd-customer-chat-composer textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--yd-font);
    border: 1.5px solid var(--yd-border);
    border-radius: var(--yd-radius-sm);
    background: var(--yd-bg-elevated);
    color: var(--yd-text-primary);
    resize: vertical;
    min-height: 80px;
    outline: none;
    transition: var(--yd-transition);
}

.yd-customer-chat-composer textarea:focus {
    border-color: var(--yd-accent);
    box-shadow: 0 0 0 4px var(--yd-accent-glow);
}

.yd-customer-chat-composer textarea::placeholder {
    color: var(--yd-text-muted);
}

.yd-chat-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

#yd-send-customer-msg {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--yd-font);
    color: #ffffff;
    background: var(--yd-accent-gradient);
    border: none;
    border-radius: var(--yd-radius-xs);
    cursor: pointer;
    transition: var(--yd-transition);
    white-space: nowrap;
}

#yd-send-customer-msg:hover {
    box-shadow: var(--yd-shadow-accent);
    transform: translateY(-1px);
}

#yd-send-customer-msg:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#yd-customer-feedback {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

#yd-customer-feedback.success {
    color: var(--yd-success);
}

#yd-customer-feedback.error {
    color: #b91c1c;
}

/* =====================================================================
   SECTION 8: PORTAL FOOTER
   ===================================================================== */

.yd-portal-footer {
    text-align: center;
    padding: 24px 0 8px;
    animation: ydFadeUp 0.6s ease-out both;
    animation-delay: 0.4s;
}

.yd-portal-footer p {
    font-size: 12px;
    color: var(--yd-text-muted);
    margin: 0;
}

.yd-portal-footer span {
    font-weight: 700;
    color: var(--yd-text-tertiary);
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */

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

@keyframes ydPulseRing {
    0%, 100% {
        box-shadow: 0 0 0 6px var(--yd-accent-glow), var(--yd-shadow-accent);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(184, 150, 90, 0.08), 0 4px 24px rgba(184, 150, 90, 0.25);
    }
}

@keyframes ydShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes ydSpin {
    to { transform: rotate(360deg); }
}

/* =====================================================================
   MOBILE RESPONSIVE — MOBILE FIRST
   ===================================================================== */

@media (max-width: 640px) {
    .yd-portal {
        padding: 16px 12px 48px;
    }

    .yd-search-card {
        padding: 32px 24px;
    }

    .yd-search-brand h2 {
        font-size: 22px;
    }

    .yd-status-hero {
        padding: 24px 20px;
    }

    .yd-status-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .yd-status-hero-info h2 {
        font-size: 19px;
    }

    /* Timeline vertical on mobile */
    .yd-timeline {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .yd-timeline-step {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 8px 0;
    }

    .yd-timeline-step:not(:last-child)::after {
        top: 36px;
        left: 17px;
        right: auto;
        width: 2px;
        height: calc(100% - 16px);
    }

    .yd-timeline-label {
        margin-top: 0;
        text-align: left;
        max-width: none;
        font-size: 13px;
    }

    .yd-timeline-section {
        padding: 24px 20px;
    }

    .yd-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .yd-detail-value {
        font-size: 16px;
    }

    .yd-products-section,
    .yd-shipment-section,
    .yd-trust-section,
    .yd-chat-section {
        padding: 24px 20px;
    }

    .yd-product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .yd-product-meta {
        justify-content: center;
    }

    .yd-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .yd-trust-grid {
        grid-template-columns: 1fr;
    }

    .yd-chat-bubble {
        max-width: 90%;
    }

    .yd-shipment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .yd-details-grid {
        grid-template-columns: 1fr;
    }

    .yd-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .yd-shipment-grid {
        grid-template-columns: 1fr;
    }
}