:root {
    --primary-color: #B8860B;
    --secondary-color: #8B4513;
    --accent-color: #32CD32;
    --text-color: #2C3E50;
    --light-text: #6C757D;
    --background-color: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --hover-color: #DAA520;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent elements from overflowing */
main {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix any absolute positioned elements */
[style*="position: absolute"] {
    max-width: 100vw;
}

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    overflow: hidden;
}

.alert-slider {
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.alert-item {
    display: inline-block;
    padding: 0 50px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 14px;
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.user-actions a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 15px;
    transition: var(--transition);
}

.user-actions a:hover {
    color: var(--primary-color);
}

.main-nav {
    padding: 15px 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
}

.search-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
    font-size: 16px;
}

.search-form .btn {
    border-radius: 0 25px 25px 0;
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 20px;
}

.cart-link {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
}

.cart-link:hover {
    background: var(--hover-color);
    color: var(--white);
}

.cart-count {
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: 0;
}

/* Navigation */
.main-navigation {
    background: var(--background-color);
    border-top: 1px solid var(--border-color);
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 0;
    display: block;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--background-color);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Categories */
.categories-grid {
    margin-top: 2rem;
}

.category-card {
    text-align: center;
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.category-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 20px auto;
    border: 4px solid var(--primary-color);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 0 15px 20px;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
}

.category-link {
    text-decoration: none;
    color: inherit;
}

/* Products */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-image .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .primary-image {
    opacity: 0;
}

.product-card:hover .hover-image {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    color: var(--light-text);
    text-decoration: line-through;
    margin-right: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating .fas {
    color: var(--light-text);
    font-size: 14px;
}

.product-rating .fas.active {
    color: #FFD700;
}

.rating-text {
    font-size: 14px;
    color: var(--light-text);
    margin-right: 5px;
}

/* Features */
.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-description {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--hover-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--background-color);
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .category-image {
        height: 120px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .search-form {
        margin-bottom: 15px;
    }
    
    .cart-link {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.alert {
    border-radius: 10px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: rgba(50, 205, 50, 0.1);
    color: #228B22;
    border-left: 4px solid #228B22;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background: rgba(13, 202, 240, 0.1);
    color: #055160;
    border-left: 4px solid #0dcaf0;
}


/* Language Switcher Styles */
.language-switcher .dropdown-toggle {
    background: transparent;
    border: 1px solid #B8860B;
    color: #B8860B;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
}

.language-switcher .dropdown-toggle:hover,
.language-switcher .dropdown-toggle:focus {
    background: #B8860B;
    color: white;
    border-color: #B8860B;
}

.language-switcher .dropdown-menu {
    min-width: 120px;
    border: 1px solid #B8860B;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.language-switcher .dropdown-item {
    font-size: 12px;
    padding: 8px 12px;
    color: #2C3E50;
}

.language-switcher .dropdown-item:hover {
    background: #B8860B;
    color: white;
}

.language-switcher .dropdown-item.active {
    background: #f8f9fa;
    color: #B8860B;
    font-weight: bold;
}

/* Contact Info Section */
.contact-info-section {
    background: #364859;
    color: white;
    padding: 80px 0;
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.contact-info-section .section-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.contact-info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #B8860B;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #B8860B;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-box:hover .contact-icon-wrapper {
    background: #9B7106;
    transform: scale(1.1);
}

.contact-icon-wrapper i {
    font-size: 30px;
    color: white;
}

.contact-box h4 {
    color: #B8860B;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-detail {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Updated Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: #E0E0E0;
    padding: 60px 0 20px;
}

.main-footer .footer-section h5 {
    color: #B8860B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #B8860B;
}

.main-footer .footer-links {
    list-style: none;
    padding: 0;
}

.main-footer .footer-links li {
    margin-bottom: 10px;
}

.main-footer .footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-footer .footer-links a:hover {
    color: #B8860B;
    transform: translateX(5px);
}

.footer-logo-img {
    height: 60px;
}

.footer-description {
    color: #BDC3C7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
}

.copyright {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Product Card Enhanced */
.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #B8860B;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Hero Section Enhanced */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #364859 0%, #2C3E50 100%);
}

.hero-overlay-disabled {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: #E0E0E0;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E0E0E0;
    font-size: 16px;
}

.feature-item i {
    color: #B8860B;
    font-size: 20px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Categories Section Enhanced */
.categories-section {
    background: #f8f9fa;
}

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #B8860B;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #B8860B;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #B8860B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #9B7106;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-info-section {
        padding: 50px 0;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}
