/* Stock List Page Styles */
.breadcrumb {
	margin-top: 40px;
	margin-bottom: 24px;
}

.stock-list-section {
	padding: 0 0 40px 0;
}

.search-section {
	padding: 40px 0 0 0;
	margin-bottom: 20px;
}

.search-container {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.search-input {
	width: 100%;
	padding: 20px 24px 20px 56px;
	font-size: 18px;
	border: 1px solid #e0e0e0;
	border-radius: 50px;
	background: white;
	transition: all 0.3s ease;
	color: #333;
}

.search-input::placeholder {
	color: #666;
	font-size: 18px;
}

.search-input:focus {
	outline: none;
	border-color: #8B4513;
	box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-icon {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	color: #6b3305;
	pointer-events: none;
	width: 24px;
	height: 24px;
}

.stock-list-stats {
	text-align: center;
	margin-bottom: 30px;
	color: #666;
}

.stock-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
	margin-bottom: 40px;
}

.stock-item {
	padding: 14px 18px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.stock-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	border-color: #8B4513;
}

.stock-item:hover .stock-arrow {
	transform: translateX(3px);
}

.stock-item a {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.stock-name {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}

.stock-arrow {
	color: #8B4513;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	width: 18px;
	height: 18px;
}

.no-results {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.no-results h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.pagination-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
}

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

.pagination-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pagination-btn {
	width: 36px;
	height: 36px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: #333;
}

.pagination-btn:hover:not(:disabled) {
	background: #f5f5f5;
	border-color: #8B4513;
}

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

.pagination-btn svg {
	width: 18px;
	height: 18px;
}

.page-select {
	padding: 6px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: white;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.3s ease;
	text-align: center;
	text-align-last: center;
}

.page-select:hover {
	border-color: #8B4513;
}

.page-select:focus {
	outline: none;
	border-color: #8B4513;
	box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.alphabet-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
	justify-content: center;
}

.alphabet-btn {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #333;
}

.alphabet-btn:hover {
	background: #f5f5f5;
	border-color: #8B4513;
}

.alphabet-btn.active {
	background: #8B4513;
	color: white;
	border-color: #8B4513;
}

.filters-row {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-dropdown {
	position: relative;
}

.filter-select {
	padding: 10px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: white;
	cursor: pointer;
	min-width: 150px;
	font-size: 14px;
}

.filter-select:hover {
	border-color: #8B4513;
}