/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #01426A;
    color: #ffffff;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
}

.navbar {
    background-color: #01426A !important;
    padding: 0 !important;
    margin: 0 !important;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Ürün Görselleri */
.product-images {
    margin-bottom: 2rem;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Ürün Bilgileri */
.product-info h1 {
    color: #ffffff;
    font-weight: 700;
}

.product-info h1.mb-3 {
    font-size: 1.36463265rem;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    display: block;
    text-align: center;
    color: #ffffff !important;
}

.product-info .text-center {
    text-align: center !important;
}

.price-tag {
    background: linear-gradient(135deg, #01426A 0%, #0A6BB5 100%);
    border-radius: 15px;
    padding: 15px 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(1, 66, 106, 0.3);
}

.price {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.product-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

.features ul li {
    padding: 5px 0;
    font-size: 1.05rem;
    color: #ffffff;
}

/* Kart Stilleri */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #01426A;
    color: #ffffff;
}

.card-header {
    border-bottom: none;
    padding: 20px;
    background-color: #01426A;
    color: #ffffff;
}

.card-body {
    padding: 30px;
    background-color: #01426A;
    color: #ffffff;
}

/* Form Stilleri */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Buton Stilleri */
.btn {
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #01426A 0%, #0A6BB5 100%);
    border: none;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0A6BB5 0%, #01426A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 66, 106, 0.4);
    color: #ffffff;
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
    color: white;
}

/* Başarı Ekranı */
.success-animation {
    animation: fadeInUp 0.8s ease-out;
}

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

.info-box {
    background: linear-gradient(135deg, rgba(1, 66, 106, 0.1) 0%, rgba(10, 107, 181, 0.1) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #01426A;
    border: 1px solid rgba(1, 66, 106, 0.2);
    box-shadow: 0 2px 10px rgba(1, 66, 106, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    background: linear-gradient(135deg, rgba(1, 66, 106, 0.15) 0%, rgba(10, 107, 181, 0.15) 100%);
    box-shadow: 0 4px 20px rgba(1, 66, 106, 0.2);
    transform: translateY(-2px);
}

.info-box h6 {
    color: #01426A;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-box p {
    color: #01426A !important;
    font-weight: 500;
    margin-bottom: 0;
}

.info-box .fw-bold {
    color: #01426A !important;
}

.order-summary .card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Alert Stilleri */
.alert {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-info {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    color: white;
    border: none;
}

.alert-danger {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #721c24;
}

.alert-success {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #155724;
}

.alert-light {
    background: linear-gradient(135deg, #01426A 0%, #0A6BB5 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(1, 66, 106, 0.3);
}

.alert-light .text-primary {
    color: #ffffff !important;
}

.alert-light .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .info-box {
        margin-bottom: 15px;
    }
}

/* Admin Panel Stilleri */
.admin-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
}

.table td {
    padding: 15px;
    vertical-align: middle;
    border-color: #e9ecef;
}

/* Yükleme Animasyonu */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

input.valid {
    border: 2px solid #28a745 !important;
    box-shadow: 0 0 4px #28a74533;
}

input.invalid {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 4px #dc354533;
}

/* Ekstra Beyaz Metin Stilleri */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

p, span, div, label {
    color: #ffffff;
}

.text-muted {
    color: #cccccc !important;
}

.navbar {
    background-color: #01426A !important;
}

.container h4, .container h5, .container h6 {
    color: #ffffff !important;
}

small {
    color: #ffffff !important;
}

/* Sabit Alt Navbar - Satın Al Butonu */
.fixed-bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #01426A 0%, #0A6BB5 100%);
    padding: 15px 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.fixed-bottom-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed-bottom-navbar .price-info {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}

.fixed-bottom-navbar .btn-buy {
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
    color: #01426A;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.fixed-bottom-navbar .btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    color: #01426A;
}

/* Progress Bar Stilleri */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: nowrap;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.progress-step {
    text-align: center;
    position: relative;
    flex: 0 1 auto;
    min-width: 60px;
    padding: 8px 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(1, 66, 106, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #01426A 0%, #0A6BB5 100%);
    box-shadow: 0 6px 20px rgba(1, 66, 106, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    animation: pulse-active 2s infinite;
}

.progress-step.completed .step-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse-active {
    0% { box-shadow: 0 6px 20px rgba(1, 66, 106, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(1, 66, 106, 0.8); }
    100% { box-shadow: 0 6px 20px rgba(1, 66, 106, 0.5); }
}

.step-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-step.active .step-label {
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.progress-step.completed .step-label {
    color: #ffffff;
    font-weight: bold;
}

.progress-line {
    flex: 1;
    min-width: 20px;
    max-width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line.completed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Mobil uyumlu responsive düzenlemeler */
@media (max-width: 992px) {
    .progress-container {
        padding: 10px 8px;
        margin: 1.5rem 0;
    }
    
    .progress-step {
        min-width: 55px;
        padding: 6px 2px;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .progress-line {
        margin: 0 6px;
        min-width: 15px;
        max-width: 40px;
    }
}

@media (max-width: 768px) {
    .progress-container {
        padding: 8px 5px;
        justify-content: space-between;
        margin: 1rem 0;
    }
    
    .progress-step {
        min-width: 50px;
        padding: 5px 1px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .progress-line {
        margin: 0 4px;
        min-width: 12px;
        max-width: 30px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .progress-container {
        padding: 6px 3px;
        overflow: visible;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-step {
        min-width: 45px;
        padding: 4px 1px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .progress-line {
        margin: 0 3px;
        min-width: 10px;
        max-width: 25px;
    }
    
    .progress-step.active {
        transform: scale(1.02);
    }
}

/* Breadcrumb Stilleri */
.pdp-breadcrump {
    background: #01426A;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    white-space: nowrap;
    min-width: max-content;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

.breadcrumb .link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.breadcrumb .link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.breadcrumb li:last-child span {
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobil uyumlu breadcrumb */
@media (max-width: 768px) {
    .pdp-breadcrump {
        padding: 8px 0;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb li {
        font-size: 0.8rem;
    }
}
.container.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 3rem !important;
}
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .fixed-bottom-navbar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .fixed-bottom-navbar .btn-buy {
        width: 100%;
        max-width: 300px;
    }
    
    body {
        padding-bottom: 100px;
    }
}

/* Rating ve Review Stilleri */
.rating-section .stars {
    font-size: 1.2rem;
}

.rating-section .progress {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.rating-section .progress-bar {
    background-color: #ffc107 !important;
}

.review-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 66, 106, 0.3);
}

.review-item .stars {
    font-size: 1rem;
}

.review-item strong {
    color: #ffffff !important;
}

.review-item p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.reviews-container {
    max-height: 800px;
    overflow-y: auto;
}

.reviews-container::-webkit-scrollbar {
    width: 6px;
}

.reviews-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Güzel Hata Mesajları */
.alert {
    animation: slideInDown 0.5s ease-out;
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7) !important;
    border-left: 5px solid #ffc107 !important;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #ff7675) !important;
    border-left: 5px solid #dc3545 !important;
}

.alert .alert-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.alert .btn-close {
    background-size: 1.2rem;
    opacity: 0.8;
}

.alert .btn-close:hover {
    opacity: 1;
}

/* Kart Mesaj Animasyonları */
#card-message .alert {
    animation: fadeInUp 0.3s ease-out;
    margin-bottom: 0 !important;
}

/* Animasyonlar */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hata mesajı hover efekti */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease;
}

/* Ikon animasyonları */
.alert i {
    animation: pulse 2s infinite;
}

/* BIN Hata Mesajları Özel Stili */
.bin-error-message {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.bin-error-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
} 