/* ===== Root Variables ===== */
:root {
    --primary-color: #f0862e;
    --primary-dark: #a64e01;
    --secondary-color: #10b981;
    --accent-color: #f97316;
    --purple-color: #a855f7;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-3d: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: var(--text-primary);
    line-height: 1.6;
    direction: rtl;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== App Container ===== */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-white);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
.app-header {
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    color: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    padding: 1.5rem;
    padding-bottom: 6.5rem;
    overflow-y: auto;
}

.page {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.page.active {
    display: block;
}

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

/* ===== Hero Section ===== */
.hero-section {
    /* background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%); */
    background: linear-gradient(135deg, #a24b00 0%, #fe9237 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-3d);
    transform: translateZ(0);
    transition: var(--transition);
}

.hero-section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
}

/* ===== Cards ===== */
.tracking-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-3d);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    transform: translateZ(0);
}

.tracking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.card-header .icon {
    color: var(--primary-color);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* ===== Forms ===== */
.tracking-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tracking-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    background: var(--bg-light);
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.tracking-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
}

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

.btn-primary {
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    /* background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); */
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    /* background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); */
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* ===== Quick Actions ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-3d);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    transform: translateZ(0);
}

.action-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: rotateY(360deg);
}

.action-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.action-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.about-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ===== Tracking Result ===== */
.tracking-result {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-3d);
    margin-top: 1.5rem;
    animation: slideUp 0.4s ease-out;
}

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

.tracking-result.hidden {
    display: none;
}

.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.shipment-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.shipment-status {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-delivered {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.status-in-transit {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #9a3412;
}

.status-processing {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.shipment-info {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.timeline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.timeline h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 11px;
    top: 32px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background: var(--border-color);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== No Result ===== */
.no-result {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.no-result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===== Shipments List ===== */
.shipments-list {
    display: grid;
    gap: 1rem;
}

.shipment-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.shipment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.shipment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shipment-id {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.shipment-route {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.shipment-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.view-details-btn {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.view-details-btn:hover {
    gap: 0.5rem;
}

/* ===== Support Section ===== */
.support-section {
    max-width: 100%;
}

.support-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item summary {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
    box-shadow: var(--shadow-3d);
}

.cta-section svg {
    margin-bottom: 1rem;
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about-section {
    max-width: 100%;
}

.about-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.about-section h3:first-child {
    margin-top: 0;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
}

.service-icon svg {
    color: white;
}

.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 480px;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

.nav-item:hover {
    background: var(--bg-light);
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-icon {
    transition: var(--transition);
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Utility Classes ===== */
.hidden {
    display: none !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 480px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Loading Animation ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


/* ===== Walkthrough Styles ===== */
.walkthrough-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fe9237 0%, #a24b00 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
}

.walkthrough-overlay.hidden {
    display: none;
}

.walkthrough-container {
    max-width: 480px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.walkthrough-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.walkthrough-slide.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.slide-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.slide-illustration {
    margin-bottom: 3rem;
}

.illustration-box {
    width: 140px;
    height: 140px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.box-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.box-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.box-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}

/* Walkthrough Dots */
.walkthrough-dots {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Walkthrough Navigation */
.walkthrough-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-skip {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-skip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-prev,
.btn-next,
.btn-start {
    background: white;
    color: #fe9237;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-prev:hover,
.btn-next:hover,
.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-prev:active,
.btn-next:active,
.btn-start:active {
    transform: translateY(-1px);
}

.btn-start {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Walkthrough */
@media (max-width: 480px) {
    .walkthrough-container {
        padding: 1.5rem;
    }
    
    .slide-icon {
        font-size: 4rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .illustration-box {
        width: 120px;
        height: 120px;
    }
    
    .illustration-box svg {
        width: 60px;
        height: 60px;
    }
    
    .btn-skip,
    .btn-prev,
    .btn-next {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
