/* Accounts Page Styles */
.accounts-section {
    padding: 30px 0;
    min-height: 80vh;
}

/* Filters Card */
.filters-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.filters-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--card-border);
    background: rgba(108, 99, 255, 0.05);
    border-radius: 16px 16px 0 0;
}

.filters-header h3 {
    font-size: 1rem;
    color: var(--light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.filters-header i {
    color: var(--accent);
    font-size: 0.9rem;
}

.filters-content {
    padding: 20px;
}

.filter-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 2px;
}

.filter-select {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.filter-select option {
    background: var(--dark);
    color: var(--light);
}

/* Search Section */
.search-section {
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.search-section label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 6px;
}

.search-box-compact {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.search-box-compact i {
    position: absolute;
    left: 12px;
    color: var(--gray);
    font-size: 0.85rem;
    z-index: 1;
}

.search-box-compact input {
    width: 100%;
    padding: 8px 12px 8px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.search-box-compact input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.search-box-compact input::placeholder {
    color: var(--gray);
    font-size: 0.8rem;
}
.sort-dropdown {
    min-width: 220px;
    background: linear-gradient(135deg, rgba(108,99,255,0.10) 0%, rgba(66,226,184,0.08) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(108,99,255,0.08);
    padding: 0;
    border: 1.5px solid var(--primary);
    position: relative;
}
.sort-dropdown .filter-btn {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: none;
    border-radius: 18px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.sort-dropdown .filter-btn:hover, .sort-dropdown .filter-btn:focus {
    background: rgba(108,99,255,0.08);
    color: var(--accent);
}
.sort-dropdown .dropdown-menu {
    left: 0;
    right: 0;
    margin: 0 auto;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(30,41,59,0.92) 0%, rgba(108,99,255,0.13) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(108,99,255,0.13);
    border: 1.5px solid var(--primary);
    padding: 12px 0;
    top: 110%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}
.sort-dropdown label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--light);
    padding: 10px 28px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    position: relative;
    line-height: 1.2;
}
.sort-dropdown label:hover, .sort-dropdown label:focus-within {
    background: rgba(108,99,255,0.10);
    color: var(--primary);
}
.sort-dropdown input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    top: 2px;
}
.sort-dropdown input[type="radio"]:checked {
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
    border-color: var(--accent);
}
.sort-dropdown input[type="radio"]:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: opacity 0.2s;
}
.sort-dropdown input[type="radio"]:checked:after {
    opacity: 1;
}

.filters-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-info h2 {
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 600;
}

.results-info span {
    color: var(--gray);
    font-weight: 400;
}

/* Filter Dropdown */
.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.filter-btn i:first-child {
    color: var(--accent);
}

.filter-btn i:last-child {
    font-size: 12px;
    transition: var(--transition);
}

.filter-dropdown.active .filter-btn i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    min-width: 200px;
    padding: 15px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.filter-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.dropdown-menu label:hover {
    color: var(--light);
}

.dropdown-menu input[type="checkbox"],
.dropdown-menu input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.price-menu {
    min-width: 250px;
}

.price-range {
    padding: 10px 0;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--card-border);
    border-radius: 3px;
    outline: none;
    --webkit-appearance: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
}

#priceValue {
    color: var(--accent);
    font-weight: 600;
}

/* Filter Link Button */
.filter-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 101, 132, 0.1);
    border: 1px solid rgba(255, 101, 132, 0.3);
    border-radius: 8px;
    color: var(--secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-link-btn:hover {
    background: rgba(255, 101, 132, 0.2);
    border-color: var(--secondary);
}

.accounts-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
}

/* Left Sidebar */
.accounts-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    position: sticky;
    top: 100px;
}

.search-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 15px;
    color: var(--gray);
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--light);
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.search-box input::placeholder {
    color: var(--gray);
}

/* Account List */
.accounts-list {
    margin-top: 0;
}

/* Updated Account Items */
.account-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.account-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateX(5px);
}

.account-item.active {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--primary);
}

.account-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center    
}
    
    .detail-title {
    flex: 1;
}

.detail-title h2 {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 8px;
}

.detail-title p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.detail-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge.verified {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge.stock-available {
    background: rgba(66, 226, 184, 0.2);
    color: var(--accent);
    border: 1px solid rgba(66, 226, 184, 0.3);
}

.detail-body {
    padding: 30px;
}

/* Price Section */
.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--card-border);
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.old-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 1rem;
}

.stock-info i {
    color: var(--accent);
}

/* Description Section */
.description-section,
.features-section,
.specs-section {
    margin-bottom: 30px;
}

.description-section h3,
.features-section h3,
.specs-section h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-section h3 i,
.features-section h3 i,
.specs-section h3 i {
    color: var(--accent);
}

.description-section p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features List */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 15px;
    padding: 8px 0;
}

.features-list li i {
    color: #10b981;
    font-size: 14px;
    width: 16px;
}

/* Specifications */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.spec-label {
    color: var(--gray);
    font-size: 14px;
}

.spec-value {
    color: var(--light);
    font-weight: 600;
    font-size: 14px;
}

/* Purchase Section */
.purchase-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector label {
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.qty-input {
    width: 60px;
    height: 35px;
    background: transparent;
    border: none;
    text-align: center;
    color: var(--light);
    font-size: 16px;
    font-weight: 600;
    --webkit-appearance: none;
    --moz-appearance: textfield;
}
/* Ve bu kuralı da ekle: */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

.total-price {
    text-align: center;
    margin-bottom: 25px;
}

.total-price span {
    font-size: 1.3rem;
    color: var(--gray);
}

.total-price strong {
    color: var(--accent);
    font-size: 1.5rem;
}

.purchase-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-buy-now,
.btn-add-cart {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--accent) 0%, #2dd4bf 100%);
    color: var(--dark);
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #2dd4bf 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 226, 184, 0.3);
}

.btn-add-cart {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border: 1px solid var(--card-border);
}

.btn-add-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.security-info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
}

.security-item i {
    color: var(--accent);
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .accounts-layout {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .accounts-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accounts-sidebar {
        position: relative;
        top: 0;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .purchase-buttons {
        flex-direction: column;
    }
    
    .security-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .security-item {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .accounts-section {
        padding: 30px 0;
    }
    
    .accounts-sidebar {
        padding: 20px;
    }
    
    .detail-body {
        padding: 20px;
    }
    
    .detail-header {
        padding: 20px;
    }
    
    .price-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .current-price {
        font-size: 1.8rem;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .account-item {
        padding: 12px;
    }
    
    .account-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
.service-body {
        padding: 20px;
    }


/* Accounts Page Styles */
.accounts-section {
    padding: 50px 0;
    min-height: 80vh;
}

.accounts-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

/* Left Sidebar */
.accounts-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    position: sticky;
    top: 100px;
}

.search-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 15px;
    color: var(--gray);
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--light);
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.search-box input::placeholder {
    color: var(--gray);
}

/* Filters */
.filters-container h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
    padding: 8px 0;
}

.filter-option:hover {
    color: var(--light);
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--card-border);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-option i {
    width: 20px;
    font-size: 16px;
    color: var(--accent);
}

/* Price Filter */
.price-filter {
    margin-top: 15px;
}

.price-filter input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--card-border);
    border-radius: 3px;
    outline: none;
    --webkit-appearance: none;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
}

#priceValue {
    color: var(--accent);
    font-weight: 600;
}

/* Sort Select */
.sort-select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 14px;
    cursor: pointer;
}

.sort-select option {
    background: var(--dark);
    color: var(--light);
}

/* Stock Indicators */
.stock-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.stock-indicator.available {
    background: #10b981;
}

.stock-indicator.low {
    background: #f59e0b;
}

/* Account List */
.accounts-list {
    margin-top: 30px;
}

.list-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.list-header h3 {
    font-size: 1.2rem;
    color: var(--light);
}

.account-count {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Account Items */
.account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.account-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateX(5px);
}

.account-item.active {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--primary);
}

.account-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.account-info {
    flex: 1;
}

.account-info h4 {
    font-size: 15px;
    color: var(--light);
    margin-bottom: 4px;
    font-weight: 600;
}

.account-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.account-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-meta .price {
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
}

.account-meta .stock {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.stock.in-stock {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.stock.low-stock {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.account-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.account-badge.verified {
    background: var(--success);
    color: var(--white);
}

.account-badge.premium {
    background: var(--warning);
    color: var(--white);
}

.account-badge.hot {
    background: var(--danger);
    color: var(--white);
}

.account-badge.new {
    background: var(--primary);
    color: var(--white);
}


/* Right Content - Account Details */
.account-details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    overflow: hidden;
}

.account-detail-card {
    padding: 0;
}

.detail-header {
    padding: 30px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

:root {
    --primary: #6c63ff;
    --primary-dark: #564fd8;
    --secondary: #ff6584;
    --accent: #42e2b8;
    --dark: #0f172a;
    --darker: #0a0f1f;
    --light: #f8fafc;
    --gray: #94a3b8;
    --light-gray: #e2e8f0;
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --inner-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.2);
    
    /* Status colors - Bu renkler dinamik olarak güncellenebilir */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Logo Icon Container - Sadeleştirilmiş */
.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Sadeleştirilmiş logo için özel sınıf */
.logo-icon.simple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Main Icon - Sadeleştirilmiş */
.logo-main-icon {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

/* Hover Effects - Sadeleştirilmiş */
.logo:hover .logo-icon.simple {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.logo:hover .logo-main-icon {
    transform: scale(1.1);
    color: var(--white);
}

/* Temizlenmiş animasyonlar - Sadece gerekli olanlar */

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    padding: 8px 16px;
    margin: 0;
    line-height: 1.2;
    position: relative;
    transition: all 0.3s ease;
    
    /* Solid white text - okunabilir */
    color: var(--light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    
    /* Z-index ayarı */
    z-index: 1;
}

.logo-text h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--accent-rgb), 0.25) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.15);
}

.logo:hover .logo-text h1::before {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.4) 0%, rgba(var(--accent-rgb), 0.35) 100%);
    border-color: rgba(var(--primary-rgb), 0.6);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
    transform: translateY(-1px);
}

.logo-text span {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-left: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo:hover .logo-text h1 {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.logo:hover .logo-text span {
    color: var(--accent);
    opacity: 1;
}

/* Mobile Optimizations for Logo - Sadeleştirilmiş */
@media (max-width: 768px) {
    .logo-icon.simple {
        width: 45px;
        height: 45px;
    }
    
    .logo-main-icon {
        font-size: 20px;
    }
    
    .logo-text h1 {
        font-size: 20px;
        padding: 6px 12px;
        border-radius: 10px;
    }
    
    .logo-text span {
        font-size: 9px;
        padding-left: 12px;
    }
}

@media (max-width: 480px) {
    .logo-icon.simple {
        width: 40px;
        height: 40px;
    }
    
    .logo-main-icon {
        font-size: 18px;
    }
    
    .logo-text h1 {
        font-size: 18px;
        padding: 5px 10px;
        border-radius: 8px;
    }
    
    .logo-text span {
        font-size: 8px;
        padding-left: 10px;
        letter-spacing: 1px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    font-size: 18px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff416c 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff416c 0%, var(--secondary) 100%);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    perspective: 1000px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(108, 99, 255, 0.3),
            0 0 60px rgba(108, 99, 255, 0.2),
            0 15px 35px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(108, 99, 255, 0.5),
            0 0 100px rgba(108, 99, 255, 0.3),
            0 20px 45px rgba(0, 0, 0, 0.5);
    }
}

/* Rotating Border Animation */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Sparkle Animation */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--accent), 
        var(--secondary), 
        var(--primary)
    );
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    animation: rotateBorder 8s linear infinite,
               pulseGlow 3s ease-in-out infinite;
    filter: blur(1px);
}

.hero-image::after {
    content: '✨';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 3;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero-image:hover img {
    transform: scale(1.05) rotateY(5deg) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(108, 99, 255, 0.4);
}

/* Floating Elements */
.hero-image .floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

.hero-image .floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: -5%;
    animation-delay: -1s;
}

.hero-image .floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 70%;
    right: -5%;
    animation-delay: -2s;
}

.hero-image .floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 30%;
    left: -8%;
    animation-delay: -3s;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-image .shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    border-radius: 20px;
    animation: shimmer 3s infinite;
    z-index: 4;
}

/* Hover Particles */
.hero-image .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-image:hover .particle {
    opacity: 1;
    animation: particleFloat 2s ease-out infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Dynamic Sparkle Animation */
@keyframes sparkleFloat {
    0% {
        transform: translateY(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1) rotate(180deg);
    }
    90% {
        opacity: 1;
        transform: translateY(-80px) scale(1.2) rotate(360deg);
    }
    100% {
        transform: translateY(-100px) scale(0) rotate(540deg);
        opacity: 0;
    }
}

.dynamic-sparkle {
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 0 5px rgba(108, 99, 255, 0.5));
}

/* Animate In Effect */
.hero-image.animate-in {
    animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-image img {
        animation: none; /* Disable complex animations on mobile */
    }
    
    .hero-image::before {
        animation-duration: 12s; /* Slower animation on mobile */
    }
    
    .hero-image .floating-element {
        display: none; /* Hide on very small screens */
    }
    
    .hero-image .particle {
        display: none; /* Hide particles on mobile */
    }
}

@media (max-width: 480px) {
    .hero-image::after {
        font-size: 1.5rem;
    }
    
    .hero-image::before {
        animation: none; /* Disable border animation on very small screens */
        background: linear-gradient(45deg, var(--primary), var(--accent));
    }
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 span {
    display: block;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: var(--inner-shadow);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 99, 255, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Page Header */
.page-header {
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header.compact {
    padding: 60px 0 30px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Categories Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--accent);
    border-radius: 5px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    position: relative;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.1), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 99, 255, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.category-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--card-border);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.category-header h3 {
    font-size: 1.4rem;
}

.category-body {
    padding: 25px;
}

.category-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.stock {
    display: flex;
    flex-direction: column;
}

.stock span:first-child {
    font-size: 16px;
    color: var(--gray);
}

.stock span:last-child {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.4rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price span:first-child {
    font-size: 16px;
    color: var(--gray);
}

.price span:last-child {
    font-weight: 800;
    color: white;
    font-size: 1.6rem;
}

.category-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    min-height: 80px;
}

.btn-block {
    display: flex;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-block:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.1), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 99, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
}

.service-info p {
    color: var(--gray);
    font-size: 14px;
}

.service-body {
    padding: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 15px;
}

.service-features li i {
    color: var(--accent);
    width: 20px;
    font-size: 16px;
}

.service-action {
    display: flex;
    gap: 15px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    gap: 10px;
    font-size: 14px;
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    flex: 1;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Service page specific button styles */
.service-action .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    flex: 1;
}

.service-action .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Service specific colors */
.facebook .service-icon { background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%); }
.business-manager .service-icon { background: linear-gradient(135deg, #4267b2 0%, #6b73ff 100%); }
.google-ads .service-icon { background: linear-gradient(135deg, #4285f4 0%, #34a853 100%); }
.facebook-pages .service-icon { background: linear-gradient(135deg, #1877f2 0%, #667eea 100%); }
.tiktok .service-icon { background: linear-gradient(135deg, #ff0050 0%, #ff4458 100%); }
.hotmail .service-icon { background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%); }
.gmail .service-icon { background: linear-gradient(135deg, #ea4335 0%, #fbbc04 100%); }
.youtube .service-icon { background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%); }
.instagram .service-icon { background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 100%); }
.canva .service-icon { background: linear-gradient(135deg, #00c4cc 0%, #7b68ee 100%); }
.chatgpt .service-icon { background: linear-gradient(135deg, #10a37f 0%, #1a7f72 100%); }
.twitter .service-icon { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); }
.capcut .service-icon { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%); }

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 226, 184, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--inner-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 101, 132, 0.1), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 101, 132, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff416c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 36px;
    transform: rotate(0);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.feature-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--inner-shadow);
}

.faq-item:hover {
    border-color: rgba(66, 226, 184, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: var(--transition);
    font-size: 24px;
    color: var(--accent);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: rgba(10, 15, 31, 0.98);
    padding: 100px 0 40px;
    border-top: 1px solid var(--card-border);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.footer-column p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-column ul li a i {
    color: var(--accent);
    width: 24px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--accent);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
    color: var(--gray);
    font-size: 16px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-method {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light);
}

/* No Services Styles */
.no-services {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.no-services i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.no-services h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 10px;
}

.no-services p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Pagination Styles */
.pagination-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    gap: 6px;
}

.page-btn:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
    color: white;
    font-weight: 700;
}

.page-btn.prev,
.page-btn.next {
    font-weight: 600;
}

.page-dots {
    color: var(--gray);
    font-weight: bold;
    padding: 0 8px;
}

.pagination-info {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

.pagination-info span {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
}

/* Load More Section Styles */
.load-more-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 30px;
}

.btn-load-more {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    min-width: 200px;
    justify-content: center;
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.btn-load-more:active {
    transform: translateY(0);
}

.btn-load-more i {
    font-size: 1.1rem;
}

.loading-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.loading-indicator i {
    font-size: 1.2rem;
    color: var(--accent);
}

.no-more-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    color: var(--gray);
    max-width: 300px;
}

.no-more-results i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.no-more-results span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
}

.no-more-results p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Out of Stock Styles for Account Cards */
.account-card.out-of-stock {
    position: relative;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.account-card.out-of-stock .card-link.disabled {
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
    position: relative;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 16px;
    z-index: 10;
}

.out-of-stock-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.out-of-stock-overlay span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    color: var(--gray);
}

.account-card.out-of-stock:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--card-border) !important;
}

/* Ensure normal cards still work */
.account-card:not(.out-of-stock) .card-link:hover {
    transform: translateY(-5px);
}

/* User Dropdown Menu Styles - Modern Theme Design */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(108, 99, 255, 0.08) 100%);
    padding: 10px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.user-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.user-avatar:hover::before {
    opacity: 1;
}

.user-avatar:hover {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, rgba(66, 226, 184, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.user-avatar .avatar-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.user-avatar .avatar-circle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.user-avatar:hover .avatar-circle::after {
    transform: rotate(45deg) translateX(100%);
}

.user-avatar .username {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    transition: all 0.3s ease;
    color: var(--gray);
    font-size: 0.8rem;
}

.user-avatar:hover .dropdown-arrow {
    color: var(--accent);
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(108, 99, 255, 0.1);
    border-radius: 16px;
    width: 280px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: visible;
    min-height: 200px;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: -1;
}

.user-dropdown.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    border-bottom: 1px solid var(--card-border);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(66, 226, 184, 0.03) 100%);
    position: relative;
}

.dropdown-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info .avatar-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-details .name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-details .email {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu {
    padding: 8px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.dropdown-item {
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: var(--light) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    line-height: 1.5 !important;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(66, 226, 184, 0.05) 100%);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-item i {
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(108, 99, 255, 0.1) !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    color: var(--primary) !important;
    transition: all 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
}

.dropdown-item:hover i {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.dropdown-item span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

.dropdown-item.logout i {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.dropdown-item.logout:hover i {
    background: #ef4444;
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin: 8px 16px;
    display: block !important;
    width: calc(100% - 32px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .user-dropdown {
        width: 260px;
        right: -10px;
    }
    
    .user-avatar {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .user-avatar .username {
        display: none;
    }
    
    .user-avatar .avatar-circle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 span {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1 span {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-action {
        flex-direction: column;
    }
    
    .btn-outline, .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 span {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .service-body {
        padding: 20px;
    }
    .filters-bar {
        padding: 18px 0 12px 0;
        margin-bottom: 10px;
    }
    .sort-dropdown {
        min-width: 140px;
    }
    .sort-dropdown .filter-btn {
        font-size: 1rem;
        padding: 10px 14px;
    }
}

.account-item {
    position: relative !important;
}
.account-badges-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex; /* display: none olmamalı */
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    max-width: 100px;
    overflow: hidden;
    opacity: 1; /* Görünürlüğü zorla */
}

.account-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-badge {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    padding: 3px 8px;
    margin-bottom: 0;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
    visibility: visible; /* Görünürlüğü zorla */
}
@media (max-width: 576px) {
    .account-badges-wrapper {
        top: 8px;
        right: 8px;
        max-width: 80px; /* Mobil cihazlar için daha küçük bir alan */
    }

    .account-badge {
        font-size: 10px;
        padding: 2px 6px;
        min-width: 50px;
    }
}
.account-actions {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    z-index: 2;
}
.account-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    background: linear-gradient(135deg, rgba(108,99,255,0.18) 0%, rgba(66,226,184,0.10) 100%);
    border: 1.5px solid var(--primary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(108,99,255,0.10);
    margin: 0;
    transition: background 0.3s, box-shadow 0.3s;
}
.account-item:hover .account-price {
    background: linear-gradient(135deg, rgba(108,99,255,0.28) 0%, rgba(66,226,184,0.18) 100%);
    box-shadow: 0 8px 24px rgba(108,99,255,0.18);
}
.bookmark-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(30,41,59,0.85);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(108,99,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.bookmark-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(108,99,255,0.18);
}
