/* ================= Global Styles ================= */
:root {
    --primary-color: #DAA520; /* Gold */
    --secondary-color: #003366; /* Dark Blue */
    --accent-color: #E67E22; /* Optional Accent (Orange/Terracotta) */
    --background-color: #f8f9fa; /* Lighter Gray */
    --card-bg-color: #ffffff;
    --text-color: #343a40; /* Darker Gray */
    --light-text-color: #FFF;
    --border-color: #dee2e6; /* Lighter Border */
    --hover-gold: #c7951e;
    --hover-blue: #002244;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 51, 102, 0.1); /* Blueish shadow */
    --shadow-strong: rgba(0, 0, 0, 0.15);
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* Base font size */
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem; /* Corresponds to 16px if base is 100% */
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 92%; /* Slightly wider */
    max-width: 1280px; /* Wider max width */
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover { color: var(--primary-color); }

h1, h2, h3, h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75em;
    line-height: 1.4;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.5em; } /* Responsive heading */
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--primary-color); }

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle; /* Remove bottom space */
}

section { padding: clamp(40px, 8vh, 80px) 0; } /* Responsive padding */

/* Focus visible styling for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.3); /* Optional glow */
    border-radius: 4px;
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex; /* Align icon and text easily */
    align-items: center;
    justify-content: center;
    gap: 0.5em; /* Space between icon and text */
    padding: 0.7em 1.5em;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent; /* Base border */
    font-size: 0.95rem;
    white-space: nowrap; /* Prevent wrapping */
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px var(--shadow-light); }
.btn:active { transform: translateY(0px); box-shadow: none; }

.btn-primary { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--hover-gold); border-color: var(--hover-gold); }

.btn-secondary { background-color: var(--secondary-color); color: var(--light-text-color); border-color: var(--secondary-color); }
.btn-secondary:hover { background-color: var(--hover-blue); border-color: var(--hover-blue); }

.btn-contact { background-color: #25D366; color: white; border-color: #25D366; font-size: 0.9rem; padding: 0.5em 1em; }
.btn-contact:hover { background-color: #1DAE50; border-color: #1DAE50; }

.btn-details { background-color: #f8f9fa; color: var(--secondary-color); border-color: var(--border-color); font-size: 0.9rem; padding: 0.5em 1em; }
.btn-details:hover { background-color: #e9ecef; border-color: #adb5bd; color: var(--secondary-color); }

.btn-secondary-outline { background-color: transparent; color: var(--secondary-color); border: 1px solid var(--secondary-color); }
.btn-secondary-outline:hover { background-color: var(--secondary-color); color: white; }
.btn-secondary-outline .reset-text { margin-right: 0.3em;}

.btn-lg { padding: 0.8em 2em; font-size: 1.1rem; }
.btn-link { background: none; border: none; color: var(--primary-color); padding: 0; font-weight: bold; text-decoration: underline; }
.btn-link:hover { color: var(--hover-gold); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ================= Header ================= */
.site-header { background-color: #fff; padding: 10px 0; box-shadow: 0 1px 4px var(--shadow-light); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--primary-color); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.logo a { font-size: clamp(1.5rem, 4vw, 1.9rem); font-weight: 700; color: var(--secondary-color); display: block; }
.logo .tagline { display: block; font-size: 0.75rem; color: #6c757d; margin-top: -5px; }
.main-nav ul { list-style: none; display: flex; gap: clamp(15px, 3vw, 35px); } /* Responsive gap */
.main-nav a { font-size: 1rem; font-weight: 500; position: relative; padding-bottom: 5px; }
.main-nav a::after { /* Underline effect */ content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; /* Prevent shrinking */ }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--secondary-color); padding: 5px; margin-left: 5px; /* RTL */ }

/* ================= Hero Section (Slider) ================= */
.slider-container { position: relative; width: 100%; max-height: 500px; overflow: hidden; background-color: var(--secondary-color); padding: 0; }
.slider { display: flex; transition: opacity 0.6s ease-in-out; height: 100%; }
.slide { min-width: 100%; position: relative; opacity: 0; transition: opacity 0.7s ease-in-out; max-height: 500px; visibility: hidden; }
.slide.active { opacity: 1; visibility: visible; z-index: 1; }
.slide img { width: 100%; height: 500px; object-fit: cover; display: block; }
.slide-caption { position: absolute; bottom: 40px; right: 5%; /* RTL */ background-color: rgba(0, 34, 68, 0.75); /* Slightly more opaque blue */ color: white; padding: clamp(15px, 3vw, 30px); border-radius: 8px; max-width: 55%; text-align: right; /* RTL */ backdrop-filter: blur(5px); /* Frosted glass */ opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s; }
.slide.active .slide-caption { opacity: 1; transform: translateY(0); }
.slide-caption h2 { color: white; font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 0.4em; }
.slide-caption p { font-size: clamp(1rem, 2.5vw, 1.2rem); line-height: 1.6; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.3); color: white; border: none; padding: 12px 18px; font-size: 1.8rem; cursor: pointer; z-index: 10; border-radius: 50%; transition: background-color 0.3s ease; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.slider-nav:hover { background-color: rgba(0, 0, 0, 0.6); }
.slider-nav.prev { left: 20px; } /* RTL Adjust */
.slider-nav.next { right: 20px; } /* RTL Adjust */

/* ================= Search/Filter Bar ================= */
.search-filter-section { background-color: #e9ecef; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.search-form { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.filter-group { display: flex; align-items: center; gap: 8px; flex-grow: 1; flex-basis: 200px; } /* Grow and set basis */
.filter-group label { font-weight: bold; color: var(--secondary-color); font-size: 0.9rem; white-space: nowrap; }
.filter-group i { color: var(--primary-color); font-size: 0.9em; }
.search-form select, .search-form input[type="search"] { width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid #ced4da; background-color: white; font-family: 'Cairo', sans-serif; font-size: 0.95rem; }
.search-form select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: left 0.75rem center; background-size: 16px 12px; appearance: none; padding-left: 35px; cursor: pointer; }
.search-input-group { position: relative; flex-grow: 2; } /* More space for search */
.search-input-group input[type="search"] { padding-left: 45px; /* Space for button */ }
.search-submit-btn { position: absolute; left: 5px; top: 50%; transform: translateY(-50%); padding: 6px 10px; line-height: 1; min-width: auto; }
.btn-secondary-outline { flex-shrink: 0; /* Prevent reset button shrinking */ }

/* ================= Product Grid Container & States ================= */
.product-grid-container { position: relative; min-height: 300px; }
.loading-state, .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; color: #6c757d; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(248, 249, 250, 0.85); backdrop-filter: blur(2px); z-index: 5; border-radius: 8px; }
.empty-state { background-color: transparent; backdrop-filter: none; } /* No bg for empty state */
.empty-state i { color: var(--primary-color); margin-bottom: 15px; opacity: 0.7; }
.empty-state p { font-size: 1.1rem; font-weight: 500; margin-bottom: 10px; }
.spinner { border: 4px solid #f3f3f3; border-top: 4px solid var(--secondary-color); border-radius: 50%; width: 35px; height: 35px; animation: spin 0.8s linear infinite; margin-bottom: 15px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; opacity: 1; transition: opacity 0.4s ease-in-out; }

/* ================= Product Card ================= */
.product-card { background-color: var(--card-bg-color); border-radius: 10px; overflow: hidden; box-shadow: 0 3px 8px var(--shadow-light); transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; border: 1px solid var(--border-color); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px var(--shadow-medium); }
.product-card.featured { border-left: 5px solid var(--primary-color); /* RTL: left border */ }
.product-card.highlighted { box-shadow: 0 0 0 3px var(--primary-color); transform: scale(1.01); z-index: 10; } /* Highlight style */
.featured-badge { position: absolute; top: 12px; right: 12px; background-color: var(--primary-color); color: white; padding: 4px 9px; font-size: 0.75rem; font-weight: bold; border-radius: 4px; z-index: 3; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.featured-badge i { margin-left: 4px; }
.favorite-btn { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, 0.8); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #adb5bd; font-size: 1.1rem; transition: all 0.2s ease; z-index: 3; backdrop-filter: blur(2px); }
.favorite-btn:hover { color: #e44d4d; background: white; transform: scale(1.1); }
.favorite-btn.active { color: #e44d4d; } /* Active favorite */
.favorite-btn i { transition: transform 0.2s ease; }
.favorite-btn:active i { transform: scale(0.8); }
.product-image-link { display: block; height: 200px; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-info { padding: 15px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 0.85rem; }
.product-category { background-color: #e7f3ff; color: var(--secondary-color); padding: 3px 10px; border-radius: 15px; font-weight: 500; }
.product-price { color: var(--primary-color); font-weight: bold; font-size: 1.05rem; }
.product-info h3 { margin-bottom: 8px; font-size: 1.1rem; line-height: 1.4; }
.product-info h3 a { color: var(--secondary-color); }
.product-info h3 a:hover { color: var(--primary-color); }
.product-seller, .product-contact-direct { font-size: 0.9rem; color: #6c757d; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.product-seller i, .product-contact-direct i { color: #adb5bd; font-size: 0.9em; }
.product-contact-direct { color: var(--text-color); font-weight: 500; margin-bottom: 15px; }
.product-contact-direct a { color: inherit; }
.product-contact-direct a:hover { color: var(--primary-color); }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 10px; border-top: 1px solid #f1f1f1; }
.product-actions .btn { flex: 1; }

/* ================= Map Section ================= */
.map-section { background-color: var(--card-bg-color); text-align: center; }
.map-section h2 .icon-animated { color: var(--primary-color); margin-left: 10px; animation: bounce 2s infinite alternate; }
#map { border-radius: 8px; border: 1px solid var(--border-color); box-shadow: 0 2px 6px var(--shadow-light); z-index: 1; /* Ensure map is below header/popups */}
.map-description { text-align: center; font-size: 0.95rem; color: #6c757d; margin-bottom: 25px; margin-top: -15px; max-width: 700px; margin-left: auto; margin-right: auto; }
/* Leaflet Marker Highlight */
.leaflet-marker-icon.highlighted-marker { filter: brightness(1.5) saturate(1.5); /* Make marker stand out */ }

/* ================= Map Popup ================= */
.leaflet-popup-content-wrapper { border-radius: 8px; box-shadow: 0 4px 15px var(--shadow-strong); border: none; }
.leaflet-popup-content { margin: 0 !important; padding: 0; width: 280px !important; font-family: 'Cairo', sans-serif; text-align: right; }
.map-popup-content .popup-image { width: 100%; height: 120px; object-fit: cover; display: block; border-top-left-radius: 8px; border-top-right-radius: 8px; }
.map-popup-content h5 { font-size: 1.05em; font-weight: bold; color: var(--secondary-color); margin: 12px 15px 5px; padding: 0; line-height: 1.3; }
.map-popup-content p { font-size: 0.9em; margin: 0 15px 6px; color: #555; }
.map-popup-content .popup-price { font-weight: bold; color: var(--primary-color); font-size: 1em; margin: 6px 15px 10px; }
.popup-actions { display: flex; justify-content: space-between; padding: 10px 15px; border-top: 1px solid #eee; background-color: #f9f9f9; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; gap: 8px; }
.popup-actions .popup-link { padding: 6px 10px; font-size: 0.8em; border-radius: 5px; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; font-weight: bold; transition: background-color 0.2s ease, transform 0.2s ease; flex: 1; text-align: center; justify-content: center; }
.popup-actions .popup-link:hover { transform: scale(1.05); }
.popup-actions .popup-link.whatsapp { background-color: #25D366; color: white; border: 1px solid #1DAE50; }
.popup-actions .popup-link.whatsapp:hover { background-color: #1DAE50; }
.popup-actions .popup-link.details { background-color: var(--secondary-color); color: white; border: 1px solid var(--hover-blue); }
.popup-actions .popup-link.details:hover { background-color: var(--hover-blue); }

/* ================= News Section ================= */
.news-section { background-color: #f1f3f5; } /* Slightly different background */
.news-section h2 { text-align: center; margin-bottom: 40px; }
.news-section h2 .icon-animated { color: var(--primary-color); margin-left: 10px; animation: bounce 2s infinite; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.news-item { background-color: var(--card-bg-color); border-radius: 8px; overflow: hidden; box-shadow: 0 3px 8px var(--shadow-light); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; border: 1px solid var(--border-color); }
.news-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px var(--shadow-medium); }
.news-image-link { display: block; height: 180px; overflow: hidden; }
.news-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-item:hover img { transform: scale(1.05); }
.news-content { padding: 15px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.news-category { display: inline-block; background-color: var(--accent-color); /* Use accent color */ color: white; padding: 3px 10px; border-radius: 15px; font-size: 0.75rem; font-weight: 500; margin-bottom: 10px; align-self: flex-start; }
.news-content h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.4; }
.news-content h3 a { color: var(--secondary-color); }
.news-content h3 a:hover { color: var(--primary-color); }
.news-date { font-size: 0.8rem; color: #6c757d; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.news-excerpt { font-size: 0.9rem; color: #495057; line-height: 1.6; margin-bottom: 15px; flex-grow: 1; }
.read-more-link { color: var(--primary-color); font-weight: bold; align-self: flex-start; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 5px; font-size: 0.9rem; }
.read-more-link i { font-size: 0.8em; transition: transform 0.3s ease; }
.read-more-link:hover { color: var(--hover-gold); }
.read-more-link:hover i { transform: translateX(-4px); /* RTL: move left */ }
.news-section .view-all { text-align: center; margin-top: 40px; }

/* ================= CTA Section ================= */
.cta-section { background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://source.unsplash.com/random/1600x500?city,night,morocco') no-repeat center center; background-size: cover; color: var(--light-text-color); text-align: center; padding: clamp(50px, 10vh, 90px) 0; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 5vw, 2.5rem); }
.cta-section p { font-size: clamp(1rem, 2.5vw, 1.2rem); margin: 15px auto 30px; max-width: 700px; opacity: 0.9; }

/* ================= Footer ================= */
.site-footer { background-color: #343a40; /* Darker Gray */ color: #adb5bd; /* Lighter Gray Text */ padding: 50px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: right; /* RTL */ }
.footer-about h3 { color: #fff; margin-bottom: 15px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.footer-about .tagline-footer { display: block; font-size: 0.8rem; color: var(--primary-color); font-weight: normal; margin-top: 0px; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; color: #ced4da; }
.footer-links-col h4, .footer-contact h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links-col ul { list-style: none; padding: 0; }
.footer-links-col li { margin-bottom: 12px; }
.footer-links-col a { color: #adb5bd; transition: color 0.3s ease, padding-right 0.3s ease; }
.footer-links-col a:hover { color: var(--primary-color); padding-right: 5px; }
.footer-contact address { font-style: normal; }
.footer-contact p { margin-bottom: 12px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.footer-contact i { color: var(--primary-color); font-size: 1.1rem; width: 20px; text-align: center; }
.footer-contact a { color: #adb5bd; }
.footer-contact a:hover { color: var(--primary-color); }
.footer-social { margin-top: 20px; display: flex; justify-content: flex-end; gap: 15px; }
.footer-social a { color: #adb5bd; font-size: 1.4rem; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-social a:hover { color: var(--primary-color); transform: translateY(-3px); }
.copyright { font-size: 0.85rem; margin-top: 40px; color: #6c757d; text-align: center; border-top: 1px solid #495057; padding-top: 25px; }

/* ================= Scroll to Top Button ================= */
#scrollTopBtn { display: none; position: fixed; bottom: 25px; left: 25px; /* RTL: left */ z-index: 999; border: none; outline: none; background-color: var(--primary-color); color: white; cursor: pointer; padding: 0; width: 45px; height: 45px; border-radius: 50%; font-size: 1.3rem; box-shadow: 0 4px 10px var(--shadow-strong); transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease; opacity: 0; visibility: hidden; }
#scrollTopBtn.visible { display: flex; align-items: center; justify-content: center; opacity: 1; visibility: visible; }
#scrollTopBtn:hover { background-color: var(--hover-gold); }

/* ================= Animations ================= */
@keyframes bounce { 0%, 100% {transform: translateY(0);} 50% {transform: translateY(-7px);} }

/* ================= Responsive Design ================= */
@media (max-width: 992px) {
    .container { width: 95%; }
    .main-nav { display: none; /* Start hidden on tablet */ }
    .mobile-menu-toggle { display: block; }
    .main-nav.active { /* Styles for opened mobile menu */ display: flex; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 5px 10px var(--shadow-light); padding: 15px 0; border-top: 1px solid var(--border-color); z-index: 999; }
    .main-nav.active ul { flex-direction: column; align-items: center; width: 100%; gap: 0; }
    .main-nav.active li { width: 100%; text-align: center; }
    .main-nav.active a { padding: 12px 0; display: block; width: 100%; border-bottom: 1px solid #f1f1f1; }
     .main-nav.active a::after { display: none; } /* Hide underline on mobile */
    .main-nav.active li:last-child a { border-bottom: none; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 768px) {
    .search-form { gap: 10px; }
    .filter-group { flex-basis: 48%; } /* Try to fit two per row */
    .search-input-group { flex-basis: 100%; order: 3; } /* Move search down */
    .btn-secondary-outline { flex-basis: 100%; order: 4; } /* Reset full width */
    .footer-content { grid-template-columns: 1fr; text-align: right; }
    .footer-contact p, .footer-social { justify-content: flex-end; }
    .slide-caption { max-width: 75%; padding: 15px 20px; }
}

@media (max-width: 576px) {
    body { font-size: 0.95rem; } /* Slightly smaller base font */
    .header-actions .btn-secondary { display: none; } /* Hide login btn */
    .filter-group { flex-basis: 100%; } /* Stack filters */
    .product-grid { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; gap: 8px; }
    .product-actions .btn { width: 100%; }
    #scrollTopBtn { width: 40px; height: 40px; font-size: 1.1rem; bottom: 20px; left: 20px; }
    .footer-about h3 { font-size: 1.3rem; }
}