/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header - Sade ve temiz */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.search-bar {
    flex: 1;
    max-width: 350px;
    margin: 0 30px;
}

.search-bar form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-bar button {
    background: #f8f9fa;
    color: #666;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-left: 1px solid #ddd;
}

.search-bar button:hover {
    background: #e9ecef;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn, .login-btn, .register-btn, .admin-btn, .logout-btn {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
}

.cart-btn {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.cart-btn:hover {
    background: #218838;
}

.login-btn {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.login-btn:hover {
    background: #0056b3;
}

.register-btn {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.register-btn:hover {
    background: #007bff;
    color: white;
}

.admin-btn {
    background: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.logout-btn {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

/* Navigation - Basit */
.navigation {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Hero Section - Sade */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Products Section */
.products-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.clear-filters {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.clear-filters:hover {
    background: #c82333;
}

/* Products Grid - Sade kartlar */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.product-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.4;
}

.product-rating {
    margin-bottom: 12px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.product-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 8px;
    font-size: 14px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-to-cart-btn, .whatsapp-order-btn, .login-required-btn, .order-now-btn {
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.add-to-cart-btn {
    background: #007bff;
    color: white;
}

.add-to-cart-btn:hover {
    background: #0056b3;
}

.order-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.order-now-btn:hover {
    background: linear-gradient(135deg, #7784bd 0%, #9e78c5 100%);
}

.whatsapp-order-btn {
    background: #25d366;
    color: white;
}

.whatsapp-order-btn:hover {
    background: #20b358;
}

.login-required-btn {
    background: #6c757d;
    color: white;
}

.login-required-btn:hover {
    background: #545b62;
}

/* Quick Order Page Styles */
.quick-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-preview {
    background: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    height: 1000px;
}

.product-preview .product-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
}

.product-preview .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.product-details .product-price {
    margin-bottom: 15px;
}

.product-details .current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.product-details .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.stock-info i {
    color: #28a745;
}

.order-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    height: fit-content;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-section h3 i {
    color: #007bff;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    transition: all 0.2s ease;
    border-right: 1px solid #ddd;
}

.qty-btn:hover {
    background: #e9ecef;
    color: #007bff;
}

.qty-btn:last-child {
    border-right: none;
    border-left: 1px solid #ddd;
}

.qty-input {
    border: none;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: 80px;
    background: white;
}

.qty-input:focus {
    outline: none;
    background: #f8f9ff;
}

.total-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
    background: #f8fff9;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #d4edda;
}

.total-price span {
    font-size: 1.4rem;
    font-weight: 700;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.payment-label:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: #007bff;
    background: #f8f9ff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.payment-icon.whatsapp {
    background: #25d366;
}

.payment-icon.cash {
    background: #28a745;
}

.payment-icon.card {
    background: #007bff;
}

.payment-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.payment-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
}

/* Cart Page Styles */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

.item-details h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-price {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.stock-info {
    color: #28a745;
    font-size: 12px;
}

.item-quantity {
    text-align: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.quantity-controls .qty-btn {
    padding: 8px 12px;
    font-size: 14px;
}

.quantity-controls .qty-input {
    width: 60px;
    padding: 8px;
    font-size: 14px;
}

.item-total {
    text-align: right;
}

.total-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 10px;
}

.cart-summary {
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.summary-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    padding-top: 15px;
    border-top: 2px solid #e5e5e5;
    margin-top: 10px;
}

/* Order Page Styles */
.order-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.item-info h5 {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.item-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.item-info strong {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.summary-total {
    border-top: 2px solid #e5e5e5;
    padding-top: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.final-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 8px;
}

/* Success Page Styles */
.success-page {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-page h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.success-message {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.order-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.order-details h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 500;
    color: #666;
}

.detail-row .value {
    font-weight: 600;
    color: #2c3e50;
}

.status-pending {
    color: #f39c12 !important;
    font-weight: 600;
}

.whatsapp-section {
    background: #f0fff4;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.whatsapp-section h3 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.whatsapp-section p {
    color: #155724;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-1px);
}

.next-steps {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #495057;
}

.next-steps li i {
    color: #28a745;
    width: 16px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover {
    color: #000;
}

.modal h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

/* Footer - Sade */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    color: #6c757d;
}

/* Form Styles - Sade */
.form-container {
    max-width: 400px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: #0056b3;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Alert Messages - Sade */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Admin Panel - Sade */
.admin-header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.admin-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 10px 16px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.admin-nav a:hover, .admin-nav a.active {
    background: #0056b3;
}

.admin-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

/* Image Upload Styles */
.image-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.image-upload:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.image-upload.dragover {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.image-upload i {
    display: block;
    margin-bottom: 10px;
}

.image-upload p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.image-preview {
    max-width: 200px;
    max-height: 200px;
    margin: 10px auto;
    border-radius: 8px;
    display: block;
    border: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        margin: 0;
        max-width: 100%;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-container {
        margin: 20px;
        padding: 20px;
    }
    
    .admin-nav {
        gap: 10px;
    }
    
    .admin-table {
        overflow-x: auto;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    /* Quick Order Responsive */
    .quick-order-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-preview {
        padding: 20px;
    }
    
    .product-preview .product-image {
        height: 250px;
    }
    
    .order-form {
        padding: 20px;
    }
    
    .payment-label {
        padding: 15px;
        gap: 12px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Cart Responsive */
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .item-quantity, .item-total {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    
    /* Order Responsive */
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* Ekstra sadelik için */
.product-card .product-actions button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Yumuşak geçişler */
* {
    transition: all 0.2s ease;
}

/* Göz yormayan renkler */
body {
    color: #495057;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
}

/* Sade buton stilleri */
button, .btn {
    box-shadow: none;
    border: 1px solid transparent;
}

button:hover, .btn:hover {
    transform: none;
    box-shadow: none;
}

/* Özel animasyonlar */
.product-card:hover {
    transform: translateY(-2px);
}

.btn:hover {
    transform: translateY(-1px);
}

.payment-label:hover {
    transform: translateY(-1px);
}

/* Scrollbar stilleri */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.orders-btn {
    background: #17a2b8;
    color: white;
    margin-right: 10px;
}

.orders-btn:hover {
    background: #138496;
    color: white;
}

.orders-btn i {
    margin-right: 5px;
}

