/* Elektronik Komponent Tedarik Platformu - Ana Stil Dosyası */

/* ===== RESET VE TEMEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A;
    background-color: #F5F7FA;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212121;
}

h1 {
    font-size: 2rem;
    /* 32px */
}

h2 {
    font-size: 1.5rem;
    /* 24px */
}

h3 {
    font-size: 1.25rem;
    /* 20px */
}

h4 {
    font-size: 1.125rem;
    /* 18px */
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #1A365D;
}

img:not(.list-img) {
    max-width: 100%;
    height: auto;
}

code,
pre {
    font-family: 'Roboto Mono', monospace;
}

/* ===== KONTEYNER VE IZGARA ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col {
    padding: 0 12px;
    flex: 1;
}

/* Sütun boyutları */
.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* ===== HEADER VE NAVİGASYON ===== */
.header {
    background-color: #fff;
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px;
}



.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-link i::before {
    color: #1A365D !important;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.main-nav {
    display: flex;
    color: #1A365D !important;
}

.main-nav a {
    color: #1A365D !important;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #4A90E2;
}

.nav-link.active {
    color: #FF6B00;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6B00;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #4A4A4A;
}

.dropdown-item:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-menu-item {
    margin-left: 1rem;
}

.user-menu-item a {
    padding: 7px 7px !important;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF6B00;
    color: #FFFFFF;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-section {
    background-color: #FFFFFF;
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-image: url('../images/ic-markt-home-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.filter-checkbox-container {
    min-height: 200px;
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 10px 30px;
    background-color: #f8f9fa;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.filter-item {
    margin-bottom: 6px;
    padding: 3px 6px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.filter-item:hover {
    background-color: #e9ecef;
}



.form-check-input:checked+.form-check-label {
    font-weight: 600;
    color: #0d6efd;
}

.form-check-input {
    margin-right: 6px;
}

.form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
}

.no-bg {
    background: none !important;
    background-color: white !important;
}

.search-container.home-search {
    max-width: 100%;
    margin: 0 auto;
    margin: 50px auto;
}

.search-container.detailed {
    margin: 0 0px;
    width: 100%;
}

.search-title {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #fff;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #E1E4E8;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out;
}

.search-input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.search-button {
    background-color: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.search-button:hover {
    background-color: #1A365D;
}

.search-subtitle {
    color: #fff !important;
}

.search-options {
    margin-top: 1rem;
    color: #fff !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advanced-search-toggle {
    color: #fff !important;
}

.search-options a {

    color: #fff !important;

}

.advanced-search-toggle {
    color: #4A90E2;
    font-size: 0.875rem;
    cursor: pointer;
}

.advanced-search-toggle:hover {
    text-decoration: underline;
}

.search-history {
    font-size: 0.875rem;
}

.search-history-item {
    color: #4A4A4A;
    margin-right: 0.5rem;
}

.advanced-search-panel {
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.advanced-search-panel.active {
    display: block;
}

.advanced-search-row {
    display: flex;
    margin-bottom: 1rem;
}

.advanced-search-field {
    flex: 1;
    margin-right: 1rem;
}

.advanced-search-field:last-child {
    margin-right: 0;
}

.advanced-search-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.advanced-search-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
}

.advanced-search-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    background-color: #FFFFFF;
}

/* ===== KATEGORİLER BÖLÜMÜ ===== */
.categories-section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4A90E2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-icon {

    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-icon img {
    width: 80px;
    height: 80px;
}

.category-name {
    font-size: 1rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.view-all-categories {
    text-align: center;
    margin-top: 2rem;
}

.dropdown-toggle {
    padding: 7px 7px !important;
}

.dropdown-toggle:hover {
    background-color: #4A90E2 !important;
    color: #FFFFFF;
}

header a,
header button {
    padding: 5px 7px !important;
}

.btn-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #4A90E2;
    border: 1px solid #4A90E2;
    border-radius: 4px;
    padding: 11px 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
}

/* ===== KOMPONENT KARTLARI ===== */
.components-section {
    padding: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.section-header .section-title::after {
    left: 0;
    transform: none;
}

.section-actions {
    display: flex;
}

.slider-controls {
    display: flex;
}

.slider-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.slider-button:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
    border-color: #4A90E2;
}

.components-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    margin: 0 -0.75rem;
}

.component-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 0.75rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.component-image {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #F5F7FA;
    border-radius: 4px;
}

.component-image img {
    max-height: 100%;
    object-fit: contain;
}

.component-info {
    padding: 0.5rem 0;
}

.component-part-number {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.component-manufacturer {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.component-description {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.component-price {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.component-stock {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.stock-available {
    color: #28A745;
}

.stock-limited {
    color: #FFC107;
}

.stock-unavailable {
    color: #DC3545;
}

.component-actions {
    display: flex;
    justify-content: space-between;
}

.btn-primary {
    display: inline-block;
    background-color: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #4A90E2;
}

.btn-action {
    display: inline-block;
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-action:hover {
    background-color: #E65100;
}

.btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #E1E4E8;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-icon:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

/* Fiyatı düşen komponentler için özel stiller */
.price-drop-card .old-price {
    text-decoration: line-through;
    color: #4A4A4A;
    font-size: 0.875rem;
}

.price-drop-card .new-price {
    color: #FF6B00;
    font-weight: 700;
}

.price-drop-card .discount-badge {
    background-color: #FF6B00;
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.suppliers-logos {
    display: flex;
    justify-content: center;
    /* Yatayda ortalar */
    align-items: center;
    /* Dikeyde ortalar (isteğe bağlı) */
    flex-wrap: wrap;
    /* Taşarsa alt satıra geç */
    gap: 20px;
    /* Logolar arası boşluk */
    padding: 20px;
    /* İç boşluk */
    text-align: center;
    /* Eski tarayıcılar için destek */
}

.suppliers-logos img {
    height: 80px;
    /* Sabit yükseklik */
    width: auto;
    /* Otomatik genişlik */
    max-width: 150px;
    /* Maksimum genişlik */
    object-fit: contain;
    /* Oranları koruma */
    /* filter: grayscale(100%); Gri tonlama */
    opacity: 0.8;
    /* Şeffaflık */
    transition: all 0.3s ease-in-out;
    /* Yumuşak geçişler */
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1A365D;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.5rem;
}

.footer-link a {
    color: #E1E4E8;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.footer-link a:hover {
    color: #4A90E2;
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    margin-right: 0.75rem;
    transition: background-color 0.2s ease-in-out;
}

.social-link:hover {
    background-color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #E1E4E8;
}

/* ===== DUYARLI TASARIM ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

    .component-card {
        flex: 0 0 calc(33.333333% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 576px;
    }

    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .user-menu {
        margin-top: 1rem;
        display: none !important;
    }

    .component-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .footer-column {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .nav-item {
        margin-left: 0rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }

    .search-button {
        border-radius: 4px;
        width: 100%;
        padding: 0.75rem;
    }

    .advanced-search-row {
        flex-direction: column;
    }

    .advanced-search-field {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .component-card {
        flex: 0 0 calc(100% - 1.5rem);
    }

    .footer-column {
        flex: 0 0 100%;
    }
}

/* Kullanıcı Profil Sayfası Özel Stilleri */
.profile-section {
    padding: 2rem 0;
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.profile-container {
    display: flex;
    gap: 2rem;
}

.profile-sidebar {
    flex: 0 0 250px;
}

.profile-content {
    flex: 1;
}

.profile-menu {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    overflow: hidden;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#navbarNav {
    background-color: #e1e1e1fb !important;
}

.navbar-collapse {
    border-radius: 0px;
    padding: 1rem;
}

.navbar-nav .nav-link {
    color: #1A365D !important;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.profile-menu-item {
    border-bottom: 1px solid #E1E4E8;
}

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

.profile-menu-divider {
    height: 1px;
    background-color: #E1E4E8;
    margin: 0.5rem 0;
}

.profile-menu-link-signout {
    color: #DC3545 !important;
}

.profile-menu-link-signout:hover {
    background-color: #F8D7DA !important;
    color: #721C24 !important;
}

.profile-menu-link-signout .profile-menu-icon {
    color: #DC3545;
}

.profile-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #4A4A4A;
    transition: all 0.2s ease-in-out;
}

.profile-menu-link:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.profile-menu-link.active {
    background-color: #4A90E2;
    color: #FFFFFF;
}

.profile-menu-icon {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.profile-card {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-card:last-child {
    margin-bottom: 0;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.profile-card-actions {
    display: flex;
    gap: 0.5rem;
}

.profile-summary {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #F5F7FA;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-placeholder {
    font-size: 2.5rem;
    color: #4A90E2;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-email {
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.profile-stat {
    display: flex;
    align-items: center;
}

.profile-stat-icon {
    margin-right: 0.5rem;
    color: #4A90E2;
}

.profile-stat-value {
    font-weight: 600;
    margin-right: 0.25rem;
}

.profile-stat-label {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    transition: border-color 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease-in-out;
}

.form-select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-cancel {
    padding: 0.75rem 1.5rem;
    background-color: #FFFFFF;
    color: #4A4A4A;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-cancel:hover {
    background-color: #F5F7FA;
}

.btn-save {
    padding: 0.75rem 1.5rem;
    background-color: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-save:hover {
    background-color: #1A365D;
}

.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.address-card {
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
}

.address-card.default {
    border-color: #4A90E2;
}

.address-default-badge {
    display: inline-block;
    background-color: #4A90E2;
    color: #FFFFFF;
    margin-left: 10px;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.address-shipping-badge {
    background-color: #328c26;
}

.address-billing-badge {
    background-color: #a51b9f;
}

.address-type {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-name {
    margin-bottom: 0.25rem;
}

.address-details {
    color: #4A4A4A;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.address-actions {
    display: flex;
    gap: 0.5rem;
}

.address-action {
    padding: 0.5rem;
    background-color: transparent;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    color: #4A4A4A;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.address-action:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.btn-add-address {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 150px;
    border: 2px dashed #E1E4E8;
    border-radius: 4px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-add-address:hover {
    border-color: #4A90E2;
    color: #4A90E2;
}

.btn-add-address-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.orders-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E1E4E8;
    font-weight: 600;
}

.orders-table td {
    padding: 1rem;
    border-bottom: 1px solid #E1E4E8;
    vertical-align: middle;
}

.order-id {
    font-weight: 600;
    color: #4A90E2;
}

.order-date {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.order-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.order-status.completed {
    background-color: #E6F4EA;
    color: #28A745;
}

.order-status.processing {
    background-color: #FFF8E6;
    color: #FFC107;
}

.order-status.shipped {
    background-color: #E6F0FF;
    color: #4A90E2;
}

.order-status.cancelled {
    background-color: #FEEBEB;
    color: #DC3545;
}

.order-total {
    font-weight: 600;
}

.order-action {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    color: #4A4A4A;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.order-action:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination-item {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E1E4E8;
    margin: 0 0.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.pagination-item:hover {
    background-color: #F5F7FA;
}

.pagination-item.active {
    background-color: #4A90E2;
    color: #FFFFFF;
    border-color: #4A90E2;
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.notification-list {
    list-style: none;
}

.notification-item {
    padding: 1rem 0;
    border-bottom: 1px solid #E1E4E8;
}

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

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.notification-title {
    font-weight: 600;
}

.notification-date {
    color: #4A4A4A;
    font-size: 0.75rem;
}

.notification-content {
    color: #4A4A4A;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
}

.notification-action {
    font-size: 0.875rem;
    color: #4A90E2;
    cursor: pointer;
}

.notification-action:hover {
    text-decoration: underline;
}

.notification-preferences {
    margin-top: 1.5rem;
}

.preference-group {
    margin-bottom: 1.5rem;
}

.preference-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preference-description {
    color: #4A4A4A;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.preference-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.preference-checkbox {
    margin-right: 0.5rem;
}

.preference-label {
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-sidebar {
        flex: 0 0 auto;
        margin-bottom: 1.5rem;
    }

    .profile-menu {
        display: flex;
        flex-wrap: wrap;
    }

    .profile-menu-item {
        flex: 1;
        min-width: 150px;
        border-bottom: none;
        border-right: 1px solid #E1E4E8;
    }

    .profile-menu-item:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .profile-summary {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profile-stats {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .address-list {
        grid-template-columns: 1fr;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Custom Breadcrumb Styles */
.breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.breadcrumb-item {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: bold;
    margin: 0 8px;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 8px 12px;
        font-size: 13px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 4px;
    }
}