/* --- Değişkenler & Reset --- */
:root {
    --primary-color: #FFC107; /* Amber - Tabela ışığını çağrıştıran */
    --primary-hover: #FFD54F;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --spacing: 2rem;
    --radius: 14px;
    --shadow: 0 14px 40px rgba(0,0,0,0.25);
    --transition: all 0.3s ease;
}

body.light-mode {
    --dark-bg: #f5f5f5;
    --card-bg: #ffffff;
    --text-light: #121212;
    --text-gray: #555555;
    color: #121212;
}

/* Light Mode Specific Overrides */
body.light-mode .header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
body.light-mode .logo, body.light-mode .nav-menu a {
    color: #121212;
}
body.light-mode .bar {
    background-color: #121212;
}
body.light-mode .service-card {
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
body.light-mode .service-card h3 {
    color: #121212;
}
body.light-mode .bg-darker {
    background-color: #eaeaea;
}
body.light-mode .footer {
    background-color: #222;
    color: #f5f5f5;
}
body.light-mode .footer h3, body.light-mode .footer a {
    color: #f5f5f5;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section-padding { padding: 5rem 0; }
.bg-darker { background-color: #0a0a0a; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.full-width { width: 100%; }

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--text-light);
    margin-left: 1rem;
    text-transform: uppercase;
}
.btn-secondary:hover {
    background-color: var(--text-light);
    color: #000;
}

.theme-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: inherit;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo span { color: var(--primary-color); }

.nav-menu ul { display: flex; gap: 2rem; }
.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('https://mir-s3-cdn-cf.behance.net/project_modules/1400_webp/92b0c3234307369.68c0f1eb380f1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-static { min-height: 70vh; }

.hero-slider { position: relative; height: 100vh; overflow: hidden; }
.hero-slider .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.9s ease; z-index: 1; }
.hero-slider .slide.active { opacity: 1; z-index: 2; }
.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; z-index: 10; transform: translateY(-50%); padding: 0 20px; pointer-events: none; }
.slider-btn { pointer-events: auto; background: rgba(0,0,0,0.45); color: white; border: none; font-size: 2rem; padding: 10px 15px; cursor: pointer; border-radius: 50px; border: 1px solid rgba(255,255,255,0.18); transition: var(--transition); }
.slider-btn:hover { background: var(--primary-color); color: #111; }
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,193,7,0.22), transparent 60%);
    filter: blur(10px);
    animation: floaty 14s ease-in-out infinite;
}
.hero::after {
    right: 8%;
    top: 10%;
    animation-delay: -5s;
    background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08), transparent 55%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(18,18,18,1));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.glow-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    /* Glow Effect */
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3), 0 0 20px rgba(255, 193, 7, 0.1);
}

/* --- Services Grid --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,193,7,0.22), rgba(255,193,7,0.05));
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255,193,7,0.08);
    animation: pulseIcon 6s ease-in-out infinite;
}
.service-card .icon i,
.service-card .icon .icon-emoji {
    font-size: inherit;
    color: inherit;
    line-height: 1;
}
.service-card .icon.icon-cover {
    width: 100%;
    height: 200px;
    border-radius: 0;
    justify-content: center;
    background: #1E1E1E;
    box-shadow: none;
    animation: none;
}
.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-light);
}
.service-card p { color: var(--text-gray); font-size: 0.9rem; }

/* --- Process --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.step {
    flex: 1;
    text-align: center;
    min-width: 200px;
}
.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-heading);
    margin-bottom: -20px;
}
.step h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@keyframes floaty {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-14px) scale(1.05); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

@keyframes pulseIcon {
    0%, 100% { box-shadow: 0 10px 30px rgba(255,193,7,0.08); transform: translateY(0); }
    50% { box-shadow: 0 16px 36px rgba(255,193,7,0.16); transform: translateY(-4px); }
}

/* --- Contact Preview --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-list { margin-top: 1.5rem; }
.contact-list li { margin-bottom: 1rem; color: var(--text-gray); }
.contact-list a { color: var(--text-light); font-weight: 500; }

/* Homepage refresh */
.highlight-metrics { background: linear-gradient(135deg, #0b1222, #0f172a); color: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
.metric-card { padding: 1.25rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; background: rgba(255,255,255,0.04); box-shadow: 0 15px 40px rgba(0,0,0,0.25); }
.metric-card h3 { font-size: 1.8rem; margin: 0.25rem 0 0.35rem; }
.metric-card .eyebrow { color: #a5b4fc; letter-spacing: .08em; text-transform: uppercase; font-size: 0.8rem; }

.feature-band { background: #0f172a; color: #f8fafc; padding: 60px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: center; }
.feature-grid h2 { margin-bottom: 0.35rem; }
.feature-list { list-style: none; display: grid; gap: 0.75rem; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; color: #d1d5db; }
.feature-list i { color: var(--primary-color); }

.projects-showcase { background: #f7f8fb; }
.showcase-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.showcase-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.showcase-card .thumb { background-size: cover; background-position: center; height: 180px; position: relative; overflow: hidden; }
.showcase-card .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)); opacity: 0; transition: var(--transition); }
.showcase-card:hover .thumb::after { opacity: 1; }
.showcase-card .body { padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.showcase-card .text-link { color: var(--primary-color); text-decoration: none; font-weight: 600; }

.cta-ribbon { background: linear-gradient(135deg, #1f2937, #111827); color: #fff; padding: 40px 0; }
.ribbon-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ribbon-actions { display: flex; gap: 0.75rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.full-width { width: 100%; }
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* --- Footer --- */
.footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-col h3 { color: var(--text-light); font-family: var(--font-heading); margin-bottom: 1rem; }
.footer-col h4 { color: var(--primary-color); margin-bottom: 1rem; text-transform: uppercase; font-size: 0.9rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-gray); }
.footer-col ul li a:hover { color: var(--primary-color); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.85rem;
}

/* --- Floating Actions --- */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 1050;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.08);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4081;
    color: white;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 999px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* --- Kurumsal Dokunuşlar & Dinamik Sayfa İçeriği --- */
.nav-menu ul li a {
    position: relative;
    overflow: hidden;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #7cf8f8);
    transform: translateX(-110%);
    transition: transform 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a:focus-visible::after,
.nav-menu ul li a.active::after {
    transform: translateX(0);
}

.page-content {
    background: radial-gradient(circle at 10% 20%, rgba(85, 196, 255, 0.05), transparent 25%),
                radial-gradient(circle at 80% 0%, rgba(124, 248, 248, 0.07), transparent 30%),
                #0e0e0e;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    color: #d9d9d9;
    line-height: 1.7;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.page-content p + p { margin-top: 1rem; }

.page-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    color: #9ad1ff;
    font-style: italic;
}

.page-content img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    margin: 1rem 0;
}

.page-content ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; z-index: 1001; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #121212;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; text-align: center; }
    
    .glow-text { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-buttons .btn-secondary { margin-left: 0; margin-top: 1rem; display: block; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Payment pages */
.payment-wrapper { padding: 80px 15px; display: flex; justify-content: center; background: #f5f7fb; }
.payment-card { background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); max-width: 720px; width: 100%; padding: 32px; }
.payment-card.success { border-top: 4px solid #28a745; }
.payment-card.error { border-top: 4px solid #dc3545; }
.payment-header h1 { margin: 0 0 8px; }
.payment-header .muted { color: #6c757d; font-size: 14px; }
.payment-body { margin-top: 16px; }
.payment-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #ececec; }
.payment-row span { color: #6c757d; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; }
.badge-paytr { background: #f0f7ff; color: #0d6efd; }
.badge-shopier { background: #fef3e6; color: #f57c00; }
.badge.status-pending { background: #fff4ce; color: #c19400; }
.badge.status-paid { background: #e9f7ef; color: #1e7e34; }
.badge.status-failed { background: #fdecea; color: #b71c1c; }
.badge.status-expired { background: #f1f1f1; color: #6c757d; }
.badge.status-info { background: #e8f1ff; color: #0d6efd; }
.badge.status-warning { background: #fff4e5; color: #d39e00; }
.badge.status-error { background: #fdecea; color: #b71c1c; }
.payment-start { margin-top: 18px; text-align: right; }
.btn-primary { background: linear-gradient(135deg,#1d4ed8,#2563eb); color: #fff; border: none; padding: 12px 20px; border-radius: 10px; cursor: pointer; }
.btn-secondary { background: #f1f1f1; color: #111; padding: 10px 16px; border-radius: 8px; text-decoration: none; display: inline-block; }
.iframe-wrapper { margin-top: 20px; }
.notice { margin-top: 12px; padding: 12px; background: #fff4ce; border-radius: 8px; color: #8c6d1f; }

/* Admin payment tables */
.card .actions { display: flex; gap: 8px; margin-top: 8px; }
.btn-sm { padding: 6px 10px; border-radius: 8px; background: #0d6efd; color: #fff; border: none; cursor: pointer; }
.small-text { font-size: 12px; }
.grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card.nested { padding: 16px; box-shadow: inset 0 0 0 1px #ececec; }
.log-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.log-list li { background: #fafafa; padding: 10px; border-radius: 8px; border: 1px solid #eee; }

/* --- Layout refinements --- */
.section { padding: 4.5rem 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.full-width { width: 100%; }

/* --- Hero slider overrides --- */
.hero-static { min-height: 70vh; }
.hero-slider { position: relative; height: 100vh; overflow: hidden; }
.hero-slider .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.9s ease; z-index: 1; }
.hero-slider .slide.active { opacity: 1; z-index: 2; }
.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; z-index: 10; transform: translateY(-50%); padding: 0 20px; pointer-events: none; }
.slider-btn { pointer-events: auto; background: rgba(0,0,0,0.45); color: white; border: none; font-size: 2rem; padding: 10px 15px; cursor: pointer; border-radius: 50px; border: 1px solid rgba(255,255,255,0.18); transition: var(--transition); }
.slider-btn:hover { background: var(--primary-color); color: #111; }

/* --- Contact / Forms --- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: start; padding-top: 2rem; }
.offer-form { background: #0f0f0f; padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); box-shadow: var(--shadow); }
.offer-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.offer-form input, .offer-form select { width: 100%; padding: 0.9rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); background: #1b1b1b; color: #fff; }
.form-checkbox { display: flex; gap: 0.75rem; align-items: center; margin: 1rem 0; }
.form-checkbox input { width: 18px; height: 18px; }

/* --- Footer fixes --- */
.footer { margin-top: 4rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); align-items: flex-start; }
.footer a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

/* --- WhatsApp --- */
.whatsapp-float { bottom: 24px; right: 24px; width: 60px; height: 60px; box-shadow: 0 16px 40px rgba(0,0,0,0.35); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }

/* --- Popup --- */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.78); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem; }
.popup-overlay.visible { display: flex; }
.popup-content { background: #111827; padding: 2rem; border-radius: var(--radius); max-width: 520px; width: 100%; position: relative; text-align: center; border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow); }
.popup-content img { max-height: 220px; margin: 0 auto 1rem; border-radius: 10px; }
.close-popup { position: absolute; top: 12px; right: 12px; font-size: 22px; cursor: pointer; color: #fff; }

@media (max-width: 768px) {
    .hero { height: 80vh; }
    .hero h1 { font-size: 2.4rem; }
    .section-padding { padding: 3.5rem 0; }
    .slider-btn { font-size: 1.4rem; }
}
