/* iOS Mobile App Styles */

/* FontAwesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Icon Styles */
.fas, .fab, .far {
    font-size: inherit;
    line-height: 1;
}

.menu-icon {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #007AFF;
}

.icon {
    font-size: 24px;
    color: #007AFF;
    margin-bottom: 8px;
}

.notification-icon {
    font-size: 20px;
    color: #007AFF;
    margin-right: 12px;
}

.report-icon {
    font-size: 24px;
    color: #007AFF;
    margin-bottom: 8px;
}

.summary-icon {
    font-size: 24px;
    color: #007AFF;
}

.contact-icon {
    font-size: 24px;
    color: #007AFF;
    margin-right: 12px;
}

.faq-arrow {
    font-size: 12px;
    color: #666;
}

.contact-arrow {
    font-size: 16px;
    color: #666;
}

/* Back Button Styles */
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    color: #667eea;
    margin-bottom: 8px;
}

.back-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.back-btn i {
    margin-right: 8px;
    color: #667eea;
}

/* Help Button Styles */
.help-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 12px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    color: #667eea;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.help-btn i {
    color: #667eea;
}

/* Help Modal Styles */
.help-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.help-modal {
    background: white;
    border-radius: 16px;
    max-width: 90%;
    width: 400px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.help-modal-overlay.active .help-modal {
    transform: scale(1) translateY(0);
}

.help-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}

.help-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.help-modal-content {
    padding: 24px;
    line-height: 1.6;
    color: #333;
    font-size: 15px;
    max-height: 60vh;
    overflow-y: auto;
}

.help-modal-content p {
    margin: 0;
}

.help-modal-footer {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.help-modal-ok {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-modal-ok:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: #f2f2f7;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-x: hidden;
}

/* Login Page Styles */
body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #007AFF;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.mobile-only {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}

/* Mobile Header Styles */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-left, .header-right {
    width: 60px;
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 35px;
    width: auto;
}

.header-spacer {
    width: 40px;
}

.menu-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    padding: 0;
    position: relative;
    margin: 16px 16px 0 0;
    box-shadow: none;
}
.header-right .menu-btn {
    margin: 16px 16px 0 0;
}
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    gap: 6px;
}
.hamburger-bar {
    width: 28px;
    height: 4px;
    background: #222;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4,2,.6,1);
    display: block;
}
.menu-btn:hover .hamburger-bar {
    background: #111;
}
.menu-btn.hamburger-animate .hamburger-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.hamburger-animate .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.menu-btn.hamburger-animate .hamburger-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.menu-header {
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-logo {
    height: 30px;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.menu-items {
    flex: 1;
    padding: 20px 0;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f2f2f7;
}

.menu-link:hover {
    background: #f8f9fa;
}

.menu-icon {
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.menu-footer {
    padding: 20px;
    border-top: 1px solid #e1e5e9;
}

.logout-menu-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ff3b30;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.logout-menu-btn:hover {
    background: #d70015;
}

/* Adjust main content for fixed header */
body:not(.login-page) {
    padding-top: 60px;
}

/* Dashboard Styles */
.header {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.header p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

/* User Card */
.user-card {
    background: white;
    margin: 20px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
    font-weight: 600;
}

.user-info h2 {
    color: #1d1d1f;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.info-label {
    color: #8e8e93;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 600;
}

/* Menu Grid */
.menu-section {
    margin: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.menu-item {
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #1d1d1f;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,122,255,0.1), rgba(88,86,214,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:active {
    transform: scale(0.95);
}

.menu-item:active::before {
    opacity: 1;
}

.menu-item .icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.menu-item:active .icon {
    transform: scale(1.1);
}

.menu-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.menu-item p {
    font-size: 12px;
    color: #8e8e93;
    line-height: 1.4;
}

/* Quick Actions */
.quick-actions {
    margin: 20px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    background: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #007AFF;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:active {
    transform: scale(0.95);
    background: #f2f2f7;
}

.action-btn.secondary {
    color: #8e8e93;
}

/* Logout Button */
.logout-section {
    margin: 20px;
    padding-bottom: 20px;
}

.logout-btn {
    background: #ff3b30;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255,59,48,0.3);
}

.logout-btn:active {
    transform: scale(0.95);
    background: #d70015;
}

/* Responsive */
@media (max-width: 375px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-card,
.menu-item,
.action-btn {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Notification Animations */
@keyframes slideDown {
    from { transform: translateX(-50%) translateY(-100%); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(0); opacity: 1; }
    to { transform: translateX(-50%) translateY(-100%); opacity: 0; }
}

/* Page Content Styles */
.page-content {
    padding: 20px;
    padding-top: 12px;
}

.page-header {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 12px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.page-header p {
    color: #8e8e93;
    font-size: 16px;
}

/* Page Header Animation */
.page-header h1, .page-header p {
    transition: all 0.3s ease;
}

.page-header h1.fade-out, .page-header p.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.page-header h1.fade-in, .page-header p.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Report Page Styles */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.report-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.report-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.report-card h3 {
    color: #8e8e93;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.report-value {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.report-change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.report-change.positive {
    background: #d4edda;
    color: #155724;
}

.report-change.negative {
    background: #f8d7da;
    color: #721c24;
}

.report-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.report-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f7;
}

.report-item:last-child {
    border-bottom: none;
}

.report-info h4 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.report-info p {
    color: #8e8e93;
    font-size: 14px;
}

.download-btn {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.download-btn:hover {
    background: #0056CC;
}

/* Notification Page Styles */
.settings-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f7;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h3 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.setting-info p {
    color: #8e8e93;
    font-size: 14px;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007AFF;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.notification-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f7;
    transition: background 0.2s;
}

.notification-item.unread {
    background: #f8f9fa;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.notification-content {
    flex: 1;
}

.notification-content h4 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-content p {
    color: #8e8e93;
    font-size: 14px;
    margin-bottom: 4px;
}

.notification-time {
    color: #c7c7cc;
    font-size: 12px;
}

.mark-read-btn {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.mark-read-btn:hover {
    background: #0056CC;
}

.clear-btn {
    width: 100%;
    padding: 15px;
    background: #ff3b30;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.clear-btn:hover {
    background: #d70015;
}

/* Inventory Page Styles */
.search-section {
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: #007AFF;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}

.inventory-summary {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.summary-card.warning {
    border-left: 4px solid #ff9500;
}

.summary-card.danger {
    border-left: 4px solid #ff3b30;
}

.summary-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.summary-info h3 {
    color: #8e8e93;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
}

.product-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f7;
    transition: background 0.2s;
}

.product-item.warning {
    border-left: 4px solid #ff9500;
}

.product-item.danger {
    border-left: 4px solid #ff3b30;
}

.product-item:last-child {
    border-bottom: none;
}

.product-info h4 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-info p {
    color: #8e8e93;
    font-size: 14px;
    margin-bottom: 8px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-label {
    color: #8e8e93;
    font-size: 12px;
}

.stock-value {
    font-size: 14px;
    font-weight: 600;
}

.stock-status.normal .stock-value {
    color: #34c759;
}

.stock-status.warning .stock-value {
    color: #ff9500;
}

.stock-status.danger .stock-value {
    color: #ff3b30;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.action-btn.small {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.action-btn.small:hover {
    background: #0056CC;
}

/* Support Page Styles */
.contact-section {
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info p {
    color: #007AFF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-time {
    color: #8e8e93;
    font-size: 12px;
}

.contact-arrow {
    color: #c7c7cc;
    font-size: 18px;
}

.faq-section {
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-arrow {
    color: #8e8e93;
    font-size: 14px;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    color: #8e8e93;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.report-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.report-form .form-group {
    margin-bottom: 20px;
}

.report-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.report-form select,
.report-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.report-form select:focus,
.report-form textarea:focus {
    outline: none;
    border-color: #007AFF;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #0056CC;
}

.app-info {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.app-info .info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f7;
}

.app-info .info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #8e8e93;
    font-size: 14px;
}

.info-value {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
}

/* Animations */
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Season Tab Bar Styles */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e1e5e9;
    display: flex;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    color: #8e8e93;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 10px;
    font-weight: 500;
}

.tab-item.active {
    color: #007AFF;
}

.tab-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.tab-item.active i {
    transform: scale(1.1);
}

.tab-item span {
    font-size: 10px;
    line-height: 1.2;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    padding: 20px;
    padding-bottom: 100px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust page content for tab bar */
body.has-tab-bar .page-content {
    padding-bottom: 80px;
}

/* Tab Content Specific Styles */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card i {
    font-size: 24px;
    color: #007AFF;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 5px;
    display: inline-block;
}

.stat-change.positive {
    background: #d4edda;
    color: #155724;
}

.stat-change.negative {
    background: #f8d7da;
    color: #721c24;
}

.product-list {
    margin-top: 20px;
}

.product-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-item i {
    font-size: 20px;
    color: #007AFF;
    margin-right: 15px;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.product-info p {
    font-size: 14px;
    color: #666;
}

.product-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: #e8f5e8;
    color: #2d5a2d;
}

.marketing-campaigns {
    margin-top: 20px;
}

.campaign-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.campaign-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.campaign-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.campaign-stats {
    display: flex;
    gap: 20px;
}

.campaign-stats span {
    font-size: 12px;
    color: #007AFF;
    font-weight: 500;
}

.analytics-charts {
    margin-top: 20px;
}

.chart-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.chart-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.chart-placeholder {
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.chart-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #007AFF;
}

.chart-placeholder p {
    font-size: 14px;
    text-align: center;
}

/* Recent Activities Styles */
.recent-activities {
    margin-top: 20px;
}

.activity-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.activity-item i {
    font-size: 20px;
    color: #007AFF;
    margin-right: 15px;
}

.activity-info {
    flex: 1;
}

.activity-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.activity-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.activity-time {
    font-size: 12px;
    color: #999;
}

/* Orders Styles */
.orders-list {
    margin-top: 20px;
}

.order-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.completed {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #cce5ff;
    color: #004085;
}

.order-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-date {
    font-size: 12px;
    color: #999;
}

.order-total {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Invoices Styles */
.invoices-list {
    margin-top: 20px;
}

.invoice-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.invoice-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.invoice-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.invoice-status.paid {
    background: #d4edda;
    color: #155724;
}

.invoice-status.pending {
    background: #fff3cd;
    color: #856404;
}

.invoice-status.overdue {
    background: #f8d7da;
    color: #721c24;
}

.invoice-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.invoice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-date {
    font-size: 12px;
    color: #999;
}

.invoice-amount {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Reports Styles */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.report-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.report-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.report-placeholder {
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.report-placeholder i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #007AFF;
}

.report-placeholder p {
    font-size: 14px;
    text-align: center;
}

/* Token Styles */
.token-value {
    transition: all 0.2s ease;
}

.token-value:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.token-value i {
    transition: transform 0.2s ease;
}

.token-value:hover i {
    transform: scale(1.2);
}

/* Metrics Section Styles */
.metrics-section {
    margin-top: 30px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.metric-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #007AFF, #5856D6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Highlights Section Styles */
.highlights-section {
    margin-top: 30px;
}

.highlights-list {
    margin-top: 20px;
}

.highlight-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 20px;
    color: #007AFF;
    margin-right: 15px;
}

.highlight-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.highlight-info p {
    font-size: 14px;
    color: #666;
}

/* Filter Styles */
.activity-filters, .order-filters, .invoice-filters {
    margin-top: 30px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #e1e5e9;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: #007AFF;
    color: white;
    border-color: #007AFF;
}

.filter-btn:hover {
    background: #f8f9fa;
}

.filter-btn.active:hover {
    background: #0056b3;
}

/* Order Summary Styles */
.order-summary, .invoice-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.summary-card i {
    font-size: 20px;
    color: #007AFF;
    margin-bottom: 8px;
}

.summary-card h3 {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Order Details Styles */
.order-details, .invoice-details {
    margin: 10px 0;
}

.order-details p, .invoice-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.order-actions, .invoice-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #007AFF;
    color: white;
}

.action-btn.secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Report Styles */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.report-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.report-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.report-card h3 i {
    margin-right: 8px;
    color: #007AFF;
}

.report-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-type {
    background: #e8f4fd;
    color: #007AFF;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.report-update {
    font-size: 12px;
    color: #999;
}

/* Quick Reports Styles */
.quick-reports {
    margin-top: 30px;
}

.quick-report-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.quick-report-btn {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-report-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.quick-report-btn i {
    font-size: 24px;
    color: #007AFF;
    margin-bottom: 8px;
}

.quick-report-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Status Colors */
.order-status.cancelled, .invoice-status.overdue {
    background: #f8d7da;
    color: #721c24;
}

/* Report Settings Styles */
.report-settings {
    margin-top: 30px;
}

/* Welcome Card Styles */
.welcome-content {
    margin-top: 20px;
}

.welcome-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.welcome-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.welcome-card h2 i {
    color: #007AFF;
    margin-right: 8px;
}

.welcome-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.welcome-card ul {
    list-style: none;
    padding: 0;
}

.welcome-card li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.welcome-card li:last-child {
    border-bottom: none;
}

.welcome-card li strong {
    color: #333;
    font-weight: 600;
}

/* Loading and Error Styles */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

.loading-spinner i {
    font-size: 32px;
    color: #007AFF;
    margin-bottom: 15px;
}

.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
    margin: 20px;
    text-align: center;
}

.error-message::before {
    content: "⚠️";
    font-size: 48px;
    margin-bottom: 15px;
}

/* iPhone-style List Section */
.iphone-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0 15px 0;
    padding: 0 20px;
    text-align: left;
}
.iphone-list-box {
    background: white;
    border-radius: 12px;
    margin: 0 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.iphone-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.4;
}
.iphone-list-row:last-child {
    border-bottom: none;
}
.iphone-list-value {
    font-weight: 600;
    color: #007AFF;
}
.iphone-list-row span:first-child {
    color: #333;
    font-weight: 500;
}
body {
    background: #f4f4f8 !important;
}
@media (max-width: 600px) {
    .iphone-list-box {
        margin: 0 4px 24px 4px !important;
    }
    .iphone-section-title {
        margin-left: 8px !important;
    }
}

/* Güneş Animasyonu - Vektörel SVG */
.sun-icon {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    animation: sun-rotate 4s linear infinite;
    margin-bottom: 8px;
}

.sun-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='4' fill='%23FFD700'/%3E%3Cpath d='M12 2L12 4M12 20L12 22M2 12L4 12M20 12L22 12M4.93 4.93L6.34 6.34M17.66 17.66L19.07 19.07M4.93 19.07L6.34 17.66M17.66 6.34L19.07 4.93' stroke='%23FFD700' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: sun-pulse 2s ease-in-out infinite alternate;
}

@keyframes sun-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sun-pulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    100% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Güneş hover efekti */
.menu-item:hover .sun-icon {
    animation-duration: 2s;
}

.menu-item:hover .sun-icon::before {
    animation-duration: 1s;
    filter: brightness(1.5) hue-rotate(10deg);
}

/* Fall 2025 - Düşen Yaprak Animasyonu */
.fall-leaves-icon {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    overflow: hidden;
}

.fall-leaves-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2C8 2 5 5 5 9C5 13 8 16 12 16C16 16 19 13 19 9C19 5 16 2 12 2ZM12 4C14.2 4 16 5.8 16 8C16 10.2 14.2 12 12 12C9.8 12 8 10.2 8 8C8 5.8 9.8 4 12 4Z' fill='%23FF6B35'/%3E%3Cpath d='M12 14L10 18L12 22L14 18L12 14Z' fill='%23FF8C42'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: leaf-fall 3s ease-in-out infinite;
}

.fall-leaves-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2C8 2 5 5 5 9C5 13 8 16 12 16C16 16 19 13 19 9C19 5 16 2 12 2ZM12 4C14.2 4 16 5.8 16 8C16 10.2 14.2 12 12 12C9.8 12 8 10.2 8 8C8 5.8 9.8 4 12 4Z' fill='%23FF8C42'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: leaf-sway 2.5s ease-in-out infinite;
}

@keyframes leaf-fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(8px) rotate(180deg);
    }
    100% {
        transform: translateY(16px) rotate(360deg);
    }
}

@keyframes leaf-sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(4px) rotate(20deg);
    }
    75% {
        transform: translateX(-4px) rotate(-20deg);
    }
}

.recent-summary-box2 {
    background: #f6f7fa;
    border-radius: 18px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 28px 0 18px 0;
    text-align: center;
    margin: 0 0 18px 0;
    width: 100%;
    box-sizing: border-box;
}
.recent-summary-box2 .recent-total {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.recent-summary-box2 .recent-label {
    font-size: 1.08rem;
    color: #888;
    margin-top: 8px;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.recent-total-center {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
    margin: 18px 0 0 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.recent-label-center {
    font-size: 1.08rem;
    color: #888;
    margin: 8px 0 18px 0;
    letter-spacing: 0.01em;
    font-weight: 500;
    text-align: center;
}

body.dashboard-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%) !important;
}

.dashboard-header {
    text-align: left;
    padding: 32px 24px 12px 24px;
}
.dashboard-header h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.dashboard-header .welcome {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0;
}

.menu-grid.modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px 20px 12px;
}

/* Modern Card Styles */
.menu-card.modern-card {
    position: relative;
    height: 208px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.menu-card.modern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Background Images with Placeholders */
.spring-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../img/dolcezza-ls-sp25-cover.jpg');
    background-size: cover;
    background-position: top center;
}

.fall-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: url('../img/dolcezza-ls-fa25-cover.jpg');
    background-size: cover;
    background-position: top center;
}

.spring26-bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background-image: url('../img/dolcezza-ls-sp26-cover.jpg');
    background-size: cover;
    background-position: top center;
}

.golf-bg {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background-image: url('../img/sp24-golf-cover.jpg');
    background-size: cover;
    background-position: top center;
}

.golf26-bg {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    background-image: url('../img/sp26-golf-cover.jpg');
    background-size: cover;
    background-position: top center;
}

.marketing-bg {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%);
    background-image: url('../img/sp24-golf-cover.jpg');
    background-size: cover;
    background-position: top center;
}


.warehouse-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-image: url('../img/dolcezza-ls-warehouse-cover.jpg');
    background-size: cover;
    background-position: top center;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 20px;
    height: 100%;
    color: white;
}

.menu-card.modern-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.menu-card.modern-card .card-icon i {
    font-size: 24px;
    color: white;
}

.menu-card.modern-card .card-texts {
    flex: 1;
}

.menu-card.modern-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.menu-card.modern-card .card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .menu-grid.modern {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 8px 16px 8px;
    }
    
    .menu-card.modern-card {
        height: 182px;
    }
    
    .menu-card.modern-card .card-content {
        padding: 16px;
    }
    
    .menu-card.modern-card .card-icon {
        width: 45px;
        height: 45px;
        margin-right: 14px;
    }
    
    .menu-card.modern-card .card-icon i {
        font-size: 22px;
    }
    
    .menu-card.modern-card .card-title {
        font-size: 16px;
    }
    
    .menu-card.modern-card .card-desc {
        font-size: 13px;
    }
}

.side-drawer {
    position: fixed;
    top: 0;
    left: -280px; /* Daha dar menü */
    width: 280px; /* Daha dar menü */
    height: 100vh;
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Daha yavaş animasyon */
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    background: transparent;
}

/* Kapatma butonu */
.drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.drawer-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.drawer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: 600;
    color: white;
    border: 3px solid rgba(255,255,255,0.3);
    overflow: hidden;
}

.drawer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.drawer-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.drawer-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 18px;
    padding: 20px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    border-radius: 0 24px 24px 0;
}

.drawer-link i {
    width: 24px;
    margin-right: 15px;
    font-size: 18px;
    text-align: center;
    color: white;
    min-width: 24px;
}

.drawer-link:active, .drawer-link:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: rgba(255,255,255,0.5);
    transform: translateX(5px);
}

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

.drawer-signout {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.drawer-signout i {
    margin-right: 8px;
    font-size: 18px;
    color: white;
}

.drawer-signout:active, .drawer-signout:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .side-drawer {
        width: 260px; /* Mobilde daha da dar */
        left: -260px;
    }
}

/* Special styles for Spring 25 and Fall 25 cards with real images */
.spring-bg .card-content,
.fall-bg .card-content {
    justify-content: flex-end;
    align-items: flex-end;
    padding: 16px;
}

.spring-bg .card-overlay,
.fall-bg .card-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.spring-bg .card-texts,
.fall-bg .card-texts {
    text-align: right;
    max-width: 60%;
}

.spring-bg .card-title,
.fall-bg .card-title {
    font-size: 16px;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.spring-bg .card-desc,
.fall-bg .card-desc {
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Special styles for all cards with real images */
.spring-bg .card-content,
.fall-bg .card-content,
.spring26-bg .card-content,
.golf-bg .card-content,
.golf26-bg .card-content,
.marketing-bg .card-content {
    justify-content: flex-end;
    align-items: flex-end;
    padding: 16px;
}

.spring-bg .card-overlay,
.fall-bg .card-overlay,
.spring26-bg .card-overlay,
.golf-bg .card-overlay,
.golf26-bg .card-overlay,
.marketing-bg .card-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.spring-bg .card-texts,
.fall-bg .card-texts,
.spring26-bg .card-texts,
.golf-bg .card-texts,
.golf26-bg .card-texts,
.marketing-bg .card-texts {
    text-align: right;
    max-width: 60%;
}

.spring-bg .card-title,
.fall-bg .card-title,
.spring26-bg .card-title,
.golf-bg .card-title,
.golf26-bg .card-title,
.marketing-bg .card-title {
    font-size: 16px;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.spring-bg .card-desc,
.fall-bg .card-desc,
.spring26-bg .card-desc,
.golf-bg .card-desc,
.golf26-bg .card-desc,
.marketing-bg .card-desc {
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* iOS Bottom Sheet Styles */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.bottom-sheet-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.bottom-sheet-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bottom-sheet-close:hover {
    background: #f5f5f5;
    color: #333;
}

.bottom-sheet-content {
    color: #333;
}

.bottom-sheet-item {
    margin-bottom: 15px;
}

.bottom-sheet-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.bottom-sheet-value {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
}

/* Bottom sheet handle indicator */
.bottom-sheet::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .bottom-sheet {
        padding: 15px;
        max-height: 85vh;
    }
    
    .bottom-sheet-title {
        font-size: 1.1rem;
    }
}

/* Bottom Sheet Section Styles */
.bottom-sheet-section {
    margin-bottom: 25px;
}

.bottom-sheet-section:last-child {
    margin-bottom: 0;
}

.bottom-sheet-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e1e5e9;
}

/* Style Table Styles */
.style-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.style-table-header {
    background: #f8f9fa;
    border-bottom: 2px solid #e1e5e9;
}

.style-table-header th {
    padding: 8px 4px;
    text-align: center;
    font-weight: 600;
    color: #555;
    font-size: 0.75rem;
}

.style-table td {
    padding: 6px 4px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75rem;
}

.style-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.style-table .total-cell {
    font-weight: 600;
    background: #f8f9fa;
}

.style-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

.style-group {
    margin-bottom: 20px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
}

/* Size mapping for different size types */
.size-xs { color: #007AFF; }
.size-s { color: #34C759; }
.size-m { color: #FF9500; }
.size-l { color: #FF3B30; }
.size-xl { color: #AF52DE; }
.size-xxl { color: #5856D6; }

/* Bottom Sheet Modern iOS Look */
.bottom-sheet {
    background: #f6f6fa;
}

.bottom-sheet-section {
    margin-bottom: 32px;
}

.bottom-sheet-section-title {
    color: #a0a0b0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bottom-sheet-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 18px 0 6px 0;
    margin-bottom: 12px;
}

.bottom-sheet-summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.bottom-sheet-summary-table td {
    padding: 0.5rem 1.2rem 0.5rem 1.2rem;
    font-size: 1.01rem;
    color: #222;
    vertical-align: middle;
}

.bottom-sheet-summary-table .label {
    color: #a0a0b0;
    font-weight: 500;
    width: 40%;
    text-align: left;
    font-size: 0.98rem;
}

.bottom-sheet-summary-table .value {
    color: #222;
    font-weight: 600;
    text-align: right;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

/* Style Table Modern Look */
.style-group {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    padding: 12px 0 2px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.style-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    padding: 0 1.2rem 6px 1.2rem;
}

.style-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    font-size: 0.97rem;
    background: none;
}

.style-table-header th {
    background: none;
    color: #a0a0b0;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 6px 4px 6px 4px;
    border-bottom: 1px solid #f0f0f0;
}

.style-table td {
    background: none;
    color: #222;
    font-size: 0.97rem;
    padding: 7px 4px 7px 4px;
    border-bottom: 1px solid #f6f6fa;
}

.style-table td.total-cell {
    font-weight: 700;
    color: #222;
    background: none;
}

@media (max-width: 600px) {
    .bottom-sheet-card, .style-group {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .bottom-sheet-summary-table td {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
    .style-name {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

/* FA25 Reports Sections Styles */
.report-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: #8E8E93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 0 16px;
}

.report-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #E5E5EA;
}

.report-item:hover {
    background: #F2F2F7;
    transform: translateX(2px);
}

.report-item:active {
    background: #E5E5EA;
    transform: scale(0.98);
}

.report-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #F2F2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #333;
    font-size: 16px;
}

.report-icon i {
    color: #333;
}

.report-content {
    flex: 1;
}

.report-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}

.report-arrow {
    color: #C7C7CC;
    font-size: 14px;
    margin-left: 8px;
}

.report-arrow i {
    color: #C7C7CC;
}

/* Section specific icon colors */
.report-section:nth-child(2) .report-icon {
    background: #E3F2FD;
}

.report-section:nth-child(2) .report-icon i,
.report-section:nth-child(2) .report-icon span {
    color: #1976D2;
}

.report-section:nth-child(3) .report-icon {
    background: #F3E5F5;
}

.report-section:nth-child(3) .report-icon i,
.report-section:nth-child(3) .report-icon span {
    color: #7B1FA2;
}

.report-section:nth-child(4) .report-icon {
    background: #E8F5E8;
}

.report-section:nth-child(4) .report-icon i,
.report-section:nth-child(4) .report-icon span {
    color: #2E7D32;
}

.report-section:nth-child(5) .report-icon {
    background: #FFF3E0;
}

.report-section:nth-child(5) .report-icon i,
.report-section:nth-child(5) .report-icon span {
    color: #F57C00;
}

.report-section:nth-child(6) .report-icon {
    background: #FCE4EC;
}

.report-section:nth-child(6) .report-icon i,
.report-section:nth-child(6) .report-icon span {
    color: #C2185B;
}

@media (max-width: 600px) {
    .report-section {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 12px;
        padding: 0 12px;
        margin-bottom: 6px;
    }
    
    .report-item {
        padding: 14px 12px;
        border-radius: 10px;
    }
    
    .report-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .report-title {
        font-size: 15px;
    }
    
    .report-arrow {
        font-size: 12px;
    }
}

.warehouse-bg .card-content {
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}
.warehouse-bg .card-texts {
    width: 100%;
}
