/* ========================================
   商家後台 - Dashboard CSS
   品牌色: #FF8A80 (珊瑚色)
   設計風格: 日系簡約 Minimal Design
   ======================================== */

/* CSS Variables - 匹配 iOS App MinimalDesignSystem */
:root {
    /* 品牌色 */
    --brand-primary: #FF8A80;
    --brand-primary-dark: #E57373;
    --brand-primary-light: #FFAB91;

    /* 背景色 - 日系奶油色 */
    --bg-main: #FFF7F0;
    --bg-card: #FFFFFF;
    --bg-sidebar: #FFFFFF;

    /* 文字色 */
    --text-primary: #2C2C2C;
    --text-secondary: #6B6B6B;
    --text-tertiary: #999999;
    --text-white: #FFFFFF;

    /* 邊框色 */
    --border-color: #E8E8E8;
    --border-light: #F5F5F5;

    /* 圓角 */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;

    /* 陰影 - 日系柔和陰影 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);

    /* 間距 */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-xxl: 24px;

    --transition: all 0.2s ease;

    --sidebar-width: 260px;
    --header-height: 64px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans TC', 'Hiragino Sans', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   Login Page - 橫式網頁版佈局
   ======================================== */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: var(--bg-main);
    padding: 0;
}

/* 橫式佈局 */
.login-horizontal {
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}

/* 左側品牌區 */
.login-branding {
    flex: 1;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 60px 60px;
    height: 100vh;
    box-sizing: border-box;
}

.branding-content {
    max-width: 400px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-horizontal .login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.login-horizontal .login-logo.logo-placeholder {
    visibility: hidden;
}

.login-horizontal .login-logo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branding-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.branding-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 48px;
    text-align: center;
}

.branding-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.feature-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
}

/* 右側登入表單區 */
.login-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 60px;
    background: var(--bg-card);
    min-height: 100vh;
}

.login-horizontal .login-card {
    width: 100%;
    max-width: 480px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Login Header - Logo + Titles (Centered as a group) */
.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.login-header .login-logo {
    margin-bottom: 20px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* 表單橫式排列 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    outline: none;
    background: var(--bg-main);
}

.form-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 138, 128, 0.12);
    background: var(--bg-card);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--text-white);
    width: 100%;
}

.btn-primary:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    background: var(--text-tertiary);
    cursor: not-allowed;
    transform: none;
}

/* Forgot Password Link */
.forgot-password-wrapper {
    text-align: center;
    margin-top: 12px;
}

.forgot-password-link {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.forgot-password-link:hover {
    color: var(--brand-primary-dark);
    text-decoration: underline;
}

.login-error {
    background: #FEE2E2;
    color: #DC2626;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    display: none;
    margin-bottom: 16px;
}

.login-error.show {
    display: block;
}

.login-footer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.login-footer a {
    color: var(--brand-primary);
    font-weight: 500;
}

/* 社交登入橫式排列 */
.social-horizontal {
    flex-direction: row !important;
    gap: 12px;
}

.social-horizontal .btn-social {
    flex: 1;
    padding: 12px 16px;
}

/* 傳統直式卡片佈局（給不支援橫式的情況） */
.login-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    padding: 48px 40px;
    text-align: center;
}

.login-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    outline: none;
    background: var(--bg-card);
}

.form-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 138, 128, 0.12);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--text-white);
    width: 100%;
}

.btn-primary:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    background: var(--text-tertiary);
    cursor: not-allowed;
    transform: none;
}

.login-error {
    background: #FEE2E2;
    color: #DC2626;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    display: none;
}

.login-error.show {
    display: block;
}

.login-footer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
}

.login-footer a {
    color: var(--brand-primary);
    font-weight: 500;
}

/* ========================================
   Dashboard Layout - 日系簡約風格
   ======================================== */

.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-main);
}

/* Sidebar - 淺色日系風格 */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: var(--transition);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.sidebar-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    overflow: hidden;
}

.sidebar-logo-icon .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 24px;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    padding: 0 12px;
    margin-bottom: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 4px;
}

.nav-item:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(255, 138, 128, 0.12);
    color: var(--brand-primary);
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.nav-badge {
    margin-left: auto;
    background: var(--brand-primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--border-radius);
    background: var(--border-light);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-plan {
    font-size: 11px;
    color: var(--text-tertiary);
}

.user-plan.premium {
    color: #D97706;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Header */
.header {
    height: var(--header-height);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Page Content */
.page-content {
    padding: var(--spacing-xxl);
}

/* ========================================
   Cards & Components - 日系簡約
   ======================================== */

.card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

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

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: var(--spacing-xxl);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card.highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: var(--text-white);
}

.stat-card.highlight .stat-label,
.stat-card.highlight .stat-change {
    color: rgba(255, 255, 255, 0.85);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background: rgba(255, 138, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.stat-card.highlight .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-change {
    font-size: 12px;
    margin-top: 8px;
    color: var(--text-tertiary);
}

.stat-change.positive {
    color: #10B981;
}

.stat-change.negative {
    color: #EF4444;
}

/* Table */
.table-container {
    overflow-x: auto;
}

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

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--border-light);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    font-size: 14px;
    color: var(--text-primary);
}

tr:hover td {
    background: var(--border-light);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #D1FAE5;
    color: #059669;
}

.badge-warning {
    background: #FEF3C7;
    color: #D97706;
}

.badge-danger {
    background: #FEE2E2;
    color: #DC2626;
}

.badge-info {
    background: #DBEAFE;
    color: #2563EB;
}

.badge-neutral {
    background: #F1F5F9;
    color: #64748B;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-tertiary);
}

.empty-state-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 320px;
    margin: 0 auto;
}

/* ========================================
   Loading States
   ======================================== */

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

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

.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border-color) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--border-radius);
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Responsive
   ======================================== */

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

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

    .main-content {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .sidebar-overlay.show {
        display: block;
    }

    /* 登入頁面響應式 */
    .login-horizontal {
        flex-direction: column;
    }

    .login-branding {
        min-height: auto;
        padding: 40px 30px;
    }

    .branding-features {
        display: none;
    }

    .branding-subtitle {
        margin-bottom: 0;
    }

    .login-form-section {
        min-height: auto;
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-horizontal {
        flex-direction: column !important;
    }
}

@media (max-width: 640px) {
    .page-content {
        padding: var(--spacing-lg);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .login-card {
        padding: 32px 24px;
    }

    .stat-value {
        font-size: 24px;
    }

    /* 登入頁面手機響應式 */
    .login-branding {
        padding: 30px 20px;
    }

    .branding-title {
        font-size: 24px;
    }

    .login-horizontal .login-logo {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .login-form-section {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Detail Section & Card Styles (Vertical Layout)
   ======================================== */

.detail-section {
    margin-bottom: 24px;
}

.detail-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 0 4px;
}

.detail-section-title i {
    color: var(--brand-primary);
    font-size: 16px;
}

.detail-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-card);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(255, 138, 128, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.btn-edit-stock {
    padding: 6px 12px;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-edit-stock:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.btn-edit-stock i {
    font-size: 12px;
}

/* ========================================
   Social Login - Google & Apple 登入按鈕
   ======================================== */

.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-tertiary);
    font-size: 13px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    padding: 0 16px;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1.5px solid var(--border-color);
    position: relative;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-social:active {
    transform: scale(0.98);
}

.btn-social:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-social i,
.btn-social svg {
    font-size: 18px;
    width: 20px;
    height: 20px;
}

/* Google 按鈕 - 白底黑字 */
.btn-google {
    background: #FFFFFF;
    color: #3c4043;
    border-color: #dadce0;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #d2d5d9;
}

.btn-google .google-icon {
    width: 18px;
    height: 18px;
}

/* Apple 按鈕 - 黑底白字 */
.btn-apple {
    background: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.btn-apple:hover {
    background: #1a1a1a;
}

.btn-apple i {
    font-size: 20px;
}