/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

.social-badge {
    background-color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/merriweather.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Jameel Noori Nastaleeq';
    src: url('../fonts/jameel-nastaleeq.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* New User Defined Variables */
    --primary-color: #0d3b2e; /* Deep Forest Green */
    --secondary-color: #d4af37; /* Warm Gold */
    --background-color: #fdfbf7; /* Off-white/Cream */
    --text-color: #1e293b; /* Dark Slate for readability */

    /* Map to existing system variables */
    --color-base: var(--background-color);
    --color-primary: var(--primary-color);
    --color-accent: var(--secondary-color);
    --color-text: var(--text-color);
    --color-text-light: #64748b;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
    --font-urdu: 'Jameel Noori Nastaleeq', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-base);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

.urdu-text {
    font-family: var(--font-urdu);
    line-height: 1.8;
    direction: rtl;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #b8860b);
    color: white;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8860b, #996515);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

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

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

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    /* Kept for backward compatibility, but we use .header-container now */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}
.navbar-brand:hover { color: var(--color-base); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links > li > a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover {
    color: white;
}

.nav-links > li > a:hover::after {
    width: 100%;
}

.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #062118 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 { 
    color: white; 
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.06), -1px -1px 5px rgba(255,255,255,0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border-right: 3px solid #f1f5f9; /* Simulates pages edge */
    border-bottom: 3px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 12px 15px 25px rgba(0,0,0,0.1), -2px -2px 10px rgba(255,255,255,0.8);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 133%; /* Aspect ratio 3:4 */
    background-color: #f8fafc;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.badge-new { background-color: var(--color-primary); color: white; }
.badge-bestseller { background-color: #FFD700; color: #333; }
.badge-discount { background-color: var(--color-accent); color: white; }

.product-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    height: 3.52rem; /* Exactly 2 lines (1.1rem * 1.6 * 2) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: auto;
}

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

/* Slide-out Cart */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: white;
    z-index: 1050;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 1rem;
    background: var(--color-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.cart-body {
    padding: 1rem;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #ddd;
    background: var(--color-base);
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    background: #eee;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-remove {
    color: var(--color-accent);
    background: none;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PDF Canvas styling */
#pdf-canvas {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-controls {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-card {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
        justify-self: center !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        /* Base styles inherited */
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        gap: 1rem;
    }
    
    .mobile-nav::-webkit-scrollbar {
        height: 3px;
    }
    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
    }
    
    .dropdown-content {
        display: none !important; /* Hide mega dropdown on mobile so it doesn't break scrolling */
    }
    
    /* Allow mobile dropdowns to open when focused or clicked */
    .dropdown:focus-within .mobile-mega-dropdown,
    .dropdown.active .mobile-mega-dropdown {
        display: grid !important;
        position: fixed !important;
        top: 180px !important;
        left: 1rem !important;
        width: calc(100vw - 2rem) !important;
        transform: none !important;
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
        gap: 0.5rem !important;
        z-index: 1000;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .sticky-add-to-cart {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: auto !important;
        transform: none !important;
    }
}

/* Mega Dropdown CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.mega-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999; /* ensure it's on top */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    gap: 1.5rem;
    text-align: left;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
    .dropdown:hover .mega-dropdown {
        display: grid !important;
    }
}

.mega-dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.mega-main-cat {
    font-weight: bold;
    color: var(--color-primary) !important;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-decoration: none;
}

.mega-sub-cat {
    color: var(--color-text) !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-sub-cat:hover {
    color: var(--color-accent) !important;
}

/* Sidebar Layout in Shop */
.shop-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.shop-sidebar {
    flex: 0 0 280px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.shop-main {
    flex: 1;
}

.sidebar-category-group {
    margin-bottom: 1.5rem;
}

.sidebar-main-cat {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sidebar-main-cat:hover,
.sidebar-main-cat.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.sidebar-sub-list {
    list-style: none;
    padding-left: 10px;
}

.sidebar-sub-list li {
    margin-bottom: 0.5rem;
}

.sidebar-sub-list a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.sidebar-sub-list a:hover,
.sidebar-sub-list a.active {
    color: var(--color-accent);
    font-weight: bold;
}

@media (max-width: 992px) {
    .shop-layout {
        flex-direction: column;
    }
    .shop-sidebar {
        display: none !important;
    }
    .mega-dropdown {
        width: 100%;
        left: 0;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        grid-template-columns: 1fr;
        position: relative;
        box-shadow: none;
        padding: 0;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-text-bubble {
    background-color: #F9F8F6;
    color: #2C4C3B;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: bubbleBounce 2s infinite ease-in-out;
    transform-origin: right center;
    position: relative;
}

/* Little tail for the text bubble */
.whatsapp-text-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #F9F8F6;
}

.whatsapp-icon-bg {
    background-color: #25D366;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-icon-bg svg {
    width: 44px;
    height: 44px;
}

.whatsapp-link:hover .whatsapp-icon-bg {
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-icon-bg {
        width: 60px;
        height: 60px;
    }
    .whatsapp-icon-bg svg {
        width: 32px;
        height: 32px;
    }
    .whatsapp-text-bubble {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Author Link Hover Effect */
.author-link:hover span {
    text-decoration: underline;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .product-grid { 
        grid-template-columns: 1fr; 
    }
    .checkout-table-wrapper { 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch;
    }
}

/* Premium Typography Logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.brand-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

/* Responsive Design for Typography Logo */
@media (max-width: 576px) {
    .brand-logo {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .brand-icon {
        width: 26px;
        height: 26px;
    }
    
    .brand-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-suffix {
        font-size: 0.7rem;
    }
}


.profile-style-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Archives Section Styling */
.archives-section {
    padding: 2rem 0;
    margin-top: 2rem;
}

.archives-title {
    font-family: var(--font-heading);
    color: #F9F8F6;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archives-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #E2E8F0;
}

.archives-btn {
    background-color: #F9F8F6;
    color: #2C4C3B;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-block;
}

/* Footer CSS overrides */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-brand {
    margin: 0 auto 1rem auto !important;
    align-self: center !important;
    justify-content: center !important;
    display: flex !important;
    gap: 0 !important;
}

.footer-column .social-icons-wrapper {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
}

/* Mobile Spacing Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 1rem 0 !important;
    }
    .header-main-row {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .brand-logo {
        order: 1;
        flex: 0 0 auto;
        margin: 0;
    }
    .header-actions {
        order: 2;
        flex: 0 0 auto;
        margin: 0;
    }
    .mega-search-container {
        order: 3;
        flex: 0 0 100%;
        margin-top: 0.5rem;
    }
    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 auto 1rem auto;
        text-align: justify;
        padding: 0 15px;
        max-width: 100%;
    }
    .hero .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.95rem !important;
    }
    .archives-section {
        padding: 1rem 0 !important;
        margin-top: 1.5rem !important;
    }
    footer {
        padding: 1rem 0 !important;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-column {
        align-items: center;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .footer-column p {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .footer-column .social-icons-wrapper {
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.55rem !important;
        white-space: nowrap;
    }
    .archives-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem;
        white-space: nowrap;
    }
    .archives-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: justify;
        padding: 0 15px;
        max-width: 100%;
    }
    .archives-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
        white-space: nowrap;
    }
}

/* Payment Warning Box */
.payment-warning-box {
    background-color: #fee2e2;
    border: 2px solid #D66853;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.payment-warning-box p {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}
.payment-warning-box p:last-child {
    margin-bottom: 0;
}
.payment-warning-box p[lang="ur"] {
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    font-size: 1.2rem;
}
