/*
Theme Name: SMS Onay Theme
Theme URI: https://smsonay.com
Author: SMS Onay
Description: Koyu temalı SMS onay servisi WordPress teması
Version: 1.0.0
Text Domain: smsonay
*/

/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #0a0a14;
    --bg-secondary: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --bg-input: #16162b;
    --border-color: #2a2a4a;
    --border-light: #3a3a5a;

    --text-primary: #e8e8f0;
    --text-secondary: #9898b8;
    --text-muted: #6868888;
    --text-white: #ffffff;

    --accent: #00d4ff;
    --accent-dark: #00a8cc;
    --accent-glow: rgba(0, 212, 255, 0.15);
    --accent-gradient: linear-gradient(135deg, #00d4ff, #7b2ff7);

    --success: #00e676;
    --success-bg: rgba(0, 230, 118, 0.1);
    --warning: #ff9100;
    --warning-bg: rgba(255, 145, 0, 0.1);
    --danger: #ff5252;
    --danger-bg: rgba(255, 82, 82, 0.1);
    --info: #448aff;
    --info-bg: rgba(68, 138, 255, 0.1);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 4px 20px rgba(0, 212, 255, 0.2);

    --sidebar-width: 260px;
    --header-height: 70px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.35);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-random-address {
    color: #c62828;
    border: 2px solid #c62828;
    background: #fff4f4;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-random-address:hover {
    color: #ffffff;
    border-color: #b71c1c;
    background: #d32f2f;
}

.btn-success {
    background: var(--success);
    color: #000;
}

.btn-success:hover {
    background: #00c964;
    transform: translateY(-2px);
}

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

.btn-danger:hover {
    background: #e04848;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-light);
}

.card-glass {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.15rem;
}

.card-stat {
    text-align: center;
    padding: 28px 20px;
}

.card-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.card-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239898b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 44px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.site-logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--text-white);
    background: var(--bg-card);
}

.desktop-nav .btn-primary {
    color: var(--text-white) !important;
}

.desktop-nav .btn-primary:hover {
    color: var(--text-white) !important;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
    display: block;
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== MOBILE BALANCE DISPLAY ===== */
.mobile-balance {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-balance .balance-amount {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.mobile-balance .balance-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 6px;
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-balance .balance-add-btn:hover {
    transform: scale(1.1);
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.mobile-sidebar.active {
    display: block;
}

.mobile-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 280px;
    height: 100%;
    background: var(--bg-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 40px -10px rgba(0, 212, 255, 0.3);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
}

.sidebar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.mobile-sidebar-close {
    width: auto;
    min-width: 40px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-nav {
    padding: 8px;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.sidebar-icon {
    margin-right: 12px;
    font-size: 18px;
}


/* ===== DASHBOARD LAYOUT ===== */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: var(--header-height);
}

/* Sidebar */
.dashboard-sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 24px 0;
    overflow-y: auto;
    z-index: 100;
    transition: var(--transition);
}

.sidebar-menu {
    list-style: none;
    padding: 0 12px;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar-menu a:hover {
    background: var(--bg-card);
    color: var(--text-white);
}

.sidebar-menu a.active {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.sidebar-menu .menu-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-balance {
    margin: 0 12px 20px;
    padding: 20px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    color: var(--text-white);
}

.sidebar-balance .balance-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-balance .balance-amount {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 4px;
}

/* Main Content */
.dashboard-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 30px;
    min-height: calc(100vh - var(--header-height));
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

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

/* ===== GRID ===== */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== TABLES ===== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-input);
    border-bottom: 1px solid var(--border-color);
}

table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

table tbody tr:hover {
    background: var(--bg-card-hover);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.badge-danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.badge-info {
    background: var(--info-bg);
    color: var(--info);
}

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    padding-top: calc(var(--header-height) + 40px);
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(123, 47, 247, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.auth-card .auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== HOMEPAGE ===== */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: calc(var(--header-height) + 60px);
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(123, 47, 247, 0.06) 0%, transparent 60%),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    padding: 80px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 auto 16px;
}

.step-item h4 {
    margin-bottom: 8px;
}

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

/* ===== SMS ONAY — PREMIUM REDESIGN ===== */

/* Selection Container */
.sms-selection-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Step Block */
.sms-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.sms-step:hover {
    border-color: var(--border-light);
}

/* Step Header */
.sms-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.sms-step-number {
    width: 40px;
    height: 40px;
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: var(--transition);
}

.sms-step-number-accent {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--text-white);
}

.sms-step-title {
    flex: 1;
}

.sms-step-title h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.sms-step-title p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.sms-selected-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* Search Box */
.sms-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: var(--transition);
}

.sms-search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.sms-search-icon {
    font-size: 1rem;
    opacity: 0.5;
    flex-shrink: 0;
}

.sms-search-box input {
    flex: 1;
    padding: 14px 0;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.sms-search-box input::placeholder {
    color: var(--text-muted);
}

/* Section Label */
.sms-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding-left: 4px;
}

/* ===== SERVICE CARDS ===== */
.sms-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.sms-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}

.sms-svc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px 14px;
    background: var(--bg-input);
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sms-svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(123, 47, 247, 0.04));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sms-svc:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.sms-svc:hover::before {
    opacity: 1;
}

.sms-svc.active {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.12), inset 0 0 20px rgba(0, 212, 255, 0.04);
}

.sms-svc.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.65rem;
    background: var(--accent);
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.sms-svc-icon {
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.sms-svc-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sms-svc-compact {
    padding: 14px 8px 10px;
    gap: 6px;
}

.sms-svc-compact .sms-svc-icon {
    font-size: 1.3rem;
}

.sms-svc-compact .sms-svc-name {
    font-size: 0.72rem;
}

/* ===== COUNTRY LIST ===== */
.sms-country-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sms-country {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg-input);
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sms-country:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 247, 0.03));
    transform: translateX(4px);
}

.sms-country.active {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}

.sms-country-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.sms-country-flag {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.sms-country-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sms-country-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sms-country-stock {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.sms-country-right {
    flex-shrink: 0;
}

.sms-country-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* ===== CONFIRM STEP ===== */
.sms-confirm-step {
    border-color: rgba(0, 212, 255, 0.2);
    background: linear-gradient(145deg, var(--bg-card), rgba(0, 212, 255, 0.03));
}

.sms-confirm-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-input);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.sms-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sms-confirm-row:last-child {
    border-bottom: none;
}

.sms-confirm-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sms-confirm-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.sms-price-highlight {
    color: var(--accent) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.sms-balance-value {
    color: var(--success) !important;
}

.sms-confirm-row-price {
    background: rgba(0, 212, 255, 0.04);
}

/* Get Number Button */
.sms-get-number-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--text-white);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.sms-get-number-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            transparent 40%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 60%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.sms-get-number-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.35);
}

.sms-get-number-btn:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.sms-get-number-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.sms-btn-icon {
    font-size: 1.2rem;
}

/* ===== STATES ===== */
.sms-loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    grid-column: 1 / -1;
}

.sms-placeholder-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.sms-placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.sms-placeholder-state p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.sms-error-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--warning);
    font-size: 0.92rem;
    font-weight: 500;
    grid-column: 1 / -1;
}

.sms-empty-msg {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    grid-column: 1 / -1;
}

/* Copy Button */
.copy-btn {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

/* Active Order Badge */
.active-order-header {
    margin-bottom: 16px;
}

.active-order-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}

/* Active Order Card */
.active-order {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.active-order .phone-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 16px 0;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

.active-order .sms-code {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--success);
    margin: 20px 0;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 4px;
    padding: 16px;
    background: var(--success-bg);
    border-radius: var(--radius);
    display: inline-block;
}

.active-order .status-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--warning);
    font-size: 1.05rem;
    margin: 20px 0;
}

.active-order .order-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== TABLES ===== */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th {
    text-align: left;
    padding: 14px 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== ALERTS ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.alert-danger {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.alert-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(255, 145, 0, 0.2);
}

.alert-info {
    background: var(--info-bg);
    color: var(--info);
    border: 1px solid rgba(68, 138, 255, 0.2);
}

/* ===== BALANCE CARDS ===== */
.balance-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.balance-option {
    padding: 20px;
    text-align: center;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.balance-option:hover {
    border-color: var(--accent);
}

.balance-option.selected {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

/* ===== COUNTRY SELECT ===== */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.country-item:hover {
    border-color: var(--accent);
}

.country-item.selected {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.country-item .country-flag {
    font-size: 1.5rem;
}

.country-item .country-name {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== COPY BUTTON ===== */
.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== LOADING ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state .empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.tab:hover {
    color: var(--text-primary);
}

.tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* ===== SIDEBAR CLOSE BUTTON ===== */
.sidebar-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.sidebar-close:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent);
}

.sidebar-close span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SIDEBAR TOGGLE BUTTON ===== */
.sidebar-toggle-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    z-index: 997;
    transition: var(--transition);
}

.sidebar-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.sidebar-toggle-btn:active {
    transform: scale(0.95);
}

.sidebar-toggle-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    right: 16px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    border-radius: var(--radius);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.toast-success {
    background: #1a3a2a;
    border: 1px solid var(--success);
}

.toast-error {
    background: #3a1a1a;
    border: 1px solid var(--danger);
}

.toast-info {
    background: #1a2a3a;
    border: 1px solid var(--info);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */

/* ===== TABLET LANDSCAPE (1024px and below) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-stat .stat-value {
        font-size: 1.6rem;
    }
}

/* ===== TABLET PORTRAIT / LARGE MOBILE (768px and below) ===== */
@media (max-width: 768px) {
    /* ===== MOBILE HEADER ===== */
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-balance {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .site-logo span:last-child {
        display: none;
    }

    .site-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    /* ===== DASHBOARD LAYOUT ===== */
    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-sidebar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - var(--header-height));
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-content {
        margin-left: 0;
        padding: 20px 16px;
        width: 100%;
    }

    /* Sidebar Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    /* Sidebar Close Button */
    .sidebar-close {
        display: flex;
    }

    /* ===== GRIDS ===== */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Form rows */
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* ===== HERO ===== */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* ===== STEPS ===== */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ===== FEATURES ===== */
    .features-section {
        padding: 50px 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    /* ===== FORMS ===== */
    .form-control {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
    }

    select.form-control {
        font-size: 16px;
    }

    /* ===== BUTTONS ===== */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .btn-sm {
        min-height: 40px;
        padding: 10px 18px;
    }

    /* ===== CARDS ===== */
    .card {
        padding: 20px 16px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* ===== TABLES ===== */
    .table-wrapper {
        border-radius: var(--radius);
        margin-bottom: 16px;
    }

    table {
        min-width: 100%;
        font-size: 0.9rem;
    }

    table thead th {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* ===== TABS ===== */
    .tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 12px 18px;
        min-height: 48px;
    }

    /* ===== TOAST ===== */
    .toast-container {
        left: 16px;
        right: 16px;
        top: calc(var(--header-height) + 12px);
    }

    .toast {
        min-width: unset;
        width: 100%;
        font-size: 0.9rem;
    }

    /* ===== PAGE HEADER ===== */
    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* ===== AUTH PAGES ===== */
    .auth-wrapper {
        padding: 20px 16px;
        padding-top: calc(var(--header-height) + 20px);
    }

    .auth-card {
        padding: 28px 20px;
    }

    /* ===== SMS SELECTION ===== */
    .sms-step {
        padding: 20px 16px;
    }

    .sms-step-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .sms-selected-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .sms-popular-grid,
    .sms-all-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .sms-svc {
        padding: 14px 8px 12px;
        min-height: 90px;
    }

    .sms-svc-icon {
        font-size: 1.4rem;
    }

    .sms-svc-name {
        font-size: 0.72rem;
    }

    .sms-country {
        padding: 14px 16px;
        min-height: 60px;
    }

    .sms-country-flag {
        font-size: 1.5rem;
    }

    .sms-country-name {
        font-size: 0.9rem;
    }

    .sms-country-price {
        font-size: 1rem;
    }

    .sms-confirm-row {
        padding: 12px 16px;
    }

    /* ===== BALANCE OPTIONS ===== */
    .balance-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .balance-option {
        padding: 16px 12px;
        min-height: 70px;
        font-size: 1rem;
    }

    /* ===== COUNTRY GRID ===== */
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ===== ACTIVE ORDER ===== */
    .active-order {
        padding: 24px 20px;
    }

    .active-order .phone-number {
        font-size: 1.4rem;
        word-break: break-all;
    }

    .active-order .sms-code {
        font-size: 2rem;
        word-break: break-all;
    }

    /* ===== SIDEBAR MENU ===== */
    .sidebar-menu a {
        min-height: 52px;
        padding: 14px 16px;
    }

    .sidebar-balance {
        margin: 0 12px 16px;
        padding: 16px;
    }

    .sidebar-balance .balance-amount {
        font-size: 1.5rem;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .site-logo {
        font-size: 1.2rem;
    }

    .site-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .dashboard-content {
        padding: 16px 12px;
    }

    .card {
        padding: 16px 12px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    /* SMS grids */
    .sms-popular-grid,
    .sms-all-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sms-svc {
        padding: 12px 6px 10px;
        min-height: 80px;
    }

    .sms-svc-icon {
        font-size: 1.2rem;
    }

    .sms-svc-name {
        font-size: 0.68rem;
    }

    /* Balance options */
    .balance-options {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Country grid */
    .country-grid {
        grid-template-columns: 1fr;
    }

    /* Auth card */
    .auth-card {
        padding: 24px 16px;
    }

    /* Buttons */
    .btn {
        font-size: 0.95rem;
    }

    /* Form */
    .form-control {
        padding: 14px 16px;
    }

    /* Table */
    table {
        font-size: 0.85rem;
    }

    table thead th,
    table tbody td {
        padding: 10px 12px;
    }

    /* Toast */
    .toast-container {
        top: calc(var(--header-height) + 8px);
        left: 12px;
        right: 12px;
    }

    /* Sidebar */
    .dashboard-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== TOUCH TARGETS - Ensure minimum 44x44px ===== */
@media (max-width: 768px) {
    .btn,
    .btn-sm,
    .tab,
    .payment-tab,
    .sms-list-item,
    .sms-server-option,
    .sms-country,
    .sms-svc,
    .balance-option,
    .country-item,
    .sidebar-menu a,
    .desktop-nav a,
    .copy-btn,
    .btn-cancel-order,
    .sms-order-btn,
    .sms-aoc-btn,
    .quick-amount-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Form elements */
    input[type="checkbox"],
    input[type="radio"] {
        min-width: 20px;
        min-height: 20px;
    }

    /* Links in tables */
    table a {
        display: inline-block;
        padding: 8px 12px;
        min-height: 40px;
    }
}



/* ===== SEO İÇERİĞİ SADECE PANEL SAYFALARINDA GİZLE ===== */
.page-template-page-sms-onay .footer-seo,
.page-template-page-siparislerim .footer-seo,
.page-template-page-bakiye .footer-seo,
.page-template-page-profil .footer-seo,
.page-template-page-panel .footer-seo {
    display: none !important;
}

/* Rank Math / Yoast SEO content blocks dışarı çıkarsa gizle */
.page-template-page-sms-onay .rank-math-breadcrumb,
.page-template-page-sms-onay .wpseo-schema-article,
.page-template-page-sms-onay [class*="rank-math"],
.page-template-page-sms-onay [class*="yoast"],
.page-template-page-siparislerim [class*="rank-math"],
.page-template-page-siparislerim [class*="yoast"] {
    display: none !important;
}
