/**
 * ojikanri-components.css
 * Reusable UI components for "煌" theme - luxurious night-work aesthetic.
 */

/* ================================================================
   Buttons
   ================================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--oji-space-xs);
	min-height: 48px;
	padding: var(--oji-space-sm) var(--oji-space-xl);
	font-size: var(--oji-font-size-base);
	font-weight: var(--oji-font-weight-medium);
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.03em;
	border: 1px solid transparent;
	border-radius: var(--oji-radius-md);
	cursor: pointer;
	transition:
		all var(--oji-transition-normal);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	position: relative;
	overflow: hidden;
}

/* Shimmer effect on hover */
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.15),
		transparent
	);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn:disabled,
.btn.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* Primary - Gold gradient */
.btn--primary {
	background: var(--oji-gradient-gold);
	background-size: 200% auto;
	color: var(--oji-color-bg);
	border-color: var(--oji-color-accent-gold);
	box-shadow: var(--oji-shadow-glow);
}

.btn--primary:hover,
.btn--primary:focus {
	background-position: right center;
	box-shadow: 0 0 30px rgba(212, 175, 87, 0.4);
	color: var(--oji-color-bg);
	text-decoration: none;
	transform: translateY(-2px);
}

/* Secondary - Outlined gold */
.btn--secondary {
	background-color: transparent;
	color: var(--oji-color-accent-gold);
	border-color: var(--oji-color-accent-gold);
}

.btn--secondary:hover,
.btn--secondary:focus {
	background-color: var(--oji-color-accent-gold-dim);
	box-shadow: var(--oji-shadow-glow);
	color: var(--oji-color-accent-gold-light);
	text-decoration: none;
}

/* Danger */
.btn--danger {
	background-color: var(--oji-color-error);
	color: #fff;
	border-color: var(--oji-color-error);
}

.btn--danger:hover,
.btn--danger:focus {
	background-color: #c0392b;
	border-color: #c0392b;
	box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
	color: #fff;
	text-decoration: none;
}

/* Copy - Rose pink */
.btn--copy {
	background: linear-gradient(135deg, var(--oji-color-accent-pink) 0%, var(--oji-color-accent-pink-light) 100%);
	color: #fff;
	border-color: var(--oji-color-accent-pink);
	box-shadow: var(--oji-shadow-pink);
}

.btn--copy:hover,
.btn--copy:focus {
	box-shadow: 0 0 30px rgba(212, 72, 122, 0.4);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

/* Ghost - subtle */
.btn--ghost {
	background-color: transparent;
	color: var(--oji-color-text-muted);
	border-color: var(--oji-color-border);
}

.btn--ghost:hover,
.btn--ghost:focus {
	background-color: var(--oji-color-surface);
	color: var(--oji-color-text);
	border-color: var(--oji-color-border-glow);
	text-decoration: none;
}

.btn--sm {
	min-height: 40px;
	padding: var(--oji-space-xs) var(--oji-space-md);
	font-size: var(--oji-font-size-sm);
}

.btn--block {
	display: flex;
	width: 100%;
}

/* ================================================================
   Cards - Glass morphism style
   ================================================================ */
.card {
	background: var(--oji-gradient-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-lg);
	padding: var(--oji-space-lg);
	box-shadow: var(--oji-shadow-md);
	position: relative;
	overflow: hidden;
	transition:
		border-color var(--oji-transition-normal),
		box-shadow var(--oji-transition-normal),
		transform var(--oji-transition-normal);
}

/* Subtle top border glow */
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--oji-gradient-border);
	opacity: 0.5;
}

.card + .card {
	margin-top: var(--oji-space-md);
}

.card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--oji-space-md);
}

.card__title {
	font-family: var(--oji-font-display);
	font-size: var(--oji-font-size-lg);
	font-weight: var(--oji-font-weight-medium);
	color: var(--oji-color-text);
	letter-spacing: 0.03em;
}

.card__body {
	font-size: var(--oji-font-size-base);
	color: var(--oji-color-text-muted);
}

/* Interactive card */
.card--interactive:hover {
	border-color: var(--oji-color-border-glow);
	box-shadow: var(--oji-shadow-lg), var(--oji-shadow-glow);
	transform: translateY(-2px);
}

/* ================================================================
   Forms
   ================================================================ */
.form-group {
	margin-bottom: var(--oji-space-lg);
}

.form-label {
	display: block;
	margin-bottom: var(--oji-space-xs);
	font-size: var(--oji-font-size-sm);
	font-weight: var(--oji-font-weight-medium);
	color: var(--oji-color-text-muted);
	letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: var(--oji-space-sm) var(--oji-space-md);
	font-size: var(--oji-font-size-base);
	color: var(--oji-color-text);
	background-color: var(--oji-color-bg);
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-md);
	transition:
		border-color var(--oji-transition-fast),
		box-shadow var(--oji-transition-fast),
		background-color var(--oji-transition-fast);
	appearance: none;
	-webkit-appearance: none;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
	border-color: var(--oji-color-border-glow);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--oji-color-accent-gold);
	box-shadow: 0 0 0 3px rgba(212, 175, 87, 0.2), var(--oji-shadow-glow);
	background-color: var(--oji-color-bg-sub);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--oji-color-text-muted);
	opacity: 0.5;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af57' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px 10px;
	padding-right: 3rem;
}

.form-error {
	font-size: var(--oji-font-size-xs);
	color: var(--oji-color-error);
	margin-top: var(--oji-space-xs);
}

/* ================================================================
   Tags
   ================================================================ */
.tag {
	display: inline-flex;
	align-items: center;
	padding: var(--oji-space-xxs) var(--oji-space-sm);
	font-size: var(--oji-font-size-xs);
	font-weight: var(--oji-font-weight-medium);
	line-height: 1.2;
	border-radius: var(--oji-radius-pill);
	background-color: var(--oji-color-surface);
	border: 1px solid var(--oji-color-border);
	color: var(--oji-color-text-muted);
	letter-spacing: 0.01em;
}

.tag--gold {
	background-color: var(--oji-color-accent-gold-dim);
	border-color: rgba(212, 175, 87, 0.3);
	color: var(--oji-color-accent-gold);
}

.tag--pink {
	background-color: var(--oji-color-accent-pink-dim);
	border-color: rgba(212, 72, 122, 0.3);
	color: var(--oji-color-accent-pink);
}

/* ================================================================
   Badges (Status)
   ================================================================ */
.badge {
	display: inline-flex;
	align-items: center;
	padding: var(--oji-space-xxs) var(--oji-space-sm);
	font-size: var(--oji-font-size-xs);
	font-weight: var(--oji-font-weight-bold);
	line-height: 1;
	border-radius: var(--oji-radius-pill);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.badge--new {
	background: linear-gradient(135deg, rgba(91, 192, 222, 0.2) 0%, rgba(91, 192, 222, 0.1) 100%);
	color: var(--oji-color-info);
	border: 1px solid rgba(91, 192, 222, 0.3);
}

.badge--regular {
	background: linear-gradient(135deg, rgba(92, 184, 92, 0.2) 0%, rgba(92, 184, 92, 0.1) 100%);
	color: var(--oji-color-success);
	border: 1px solid rgba(92, 184, 92, 0.3);
}

.badge--vip {
	background: linear-gradient(135deg, var(--oji-color-accent-gold-dim) 0%, rgba(212, 175, 87, 0.05) 100%);
	color: var(--oji-color-accent-gold);
	border: 1px solid rgba(212, 175, 87, 0.4);
	box-shadow: 0 0 8px rgba(212, 175, 87, 0.2);
}

.badge--dormant {
	background: linear-gradient(135deg, rgba(138, 138, 160, 0.2) 0%, rgba(138, 138, 160, 0.1) 100%);
	color: var(--oji-color-text-muted);
	border: 1px solid rgba(138, 138, 160, 0.3);
}

/* ================================================================
   Modal
   ================================================================ */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: var(--oji-z-modal);
	align-items: center;
	justify-content: center;
	padding: var(--oji-space-md);
}

.modal.is-active {
	display: flex;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 20, 0.95) 100%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.modal__content {
	position: relative;
	width: 100%;
	max-width: var(--oji-container-sm);
	max-height: 90vh;
	overflow-y: auto;
	background: var(--oji-gradient-surface);
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-xl);
	padding: var(--oji-space-xl);
	box-shadow: var(--oji-shadow-lg), 0 0 60px rgba(0, 0, 0, 0.5);
	animation: oji-scale-in 0.3s ease-out;
}

.modal__content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--oji-gradient-border);
}

.modal__close {
	position: absolute;
	top: var(--oji-space-md);
	right: var(--oji-space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--oji-color-surface);
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-md);
	color: var(--oji-color-text-muted);
	font-size: var(--oji-font-size-lg);
	cursor: pointer;
	transition: all var(--oji-transition-fast);
}

.modal__close:hover {
	color: var(--oji-color-text);
	border-color: var(--oji-color-accent-gold);
	box-shadow: var(--oji-shadow-glow);
}

/* ================================================================
   Alerts
   ================================================================ */
.alert {
	display: flex;
	align-items: flex-start;
	gap: var(--oji-space-sm);
	padding: var(--oji-space-md) var(--oji-space-lg);
	border-radius: var(--oji-radius-md);
	font-size: var(--oji-font-size-sm);
	border: 1px solid transparent;
	margin-bottom: var(--oji-space-lg);
	position: relative;
	overflow: hidden;
}

.alert::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
}

.alert--success {
	background: linear-gradient(90deg, rgba(92, 184, 92, 0.1) 0%, transparent 100%);
	border-color: rgba(92, 184, 92, 0.3);
	color: var(--oji-color-success);
}

.alert--success::before {
	background: var(--oji-color-success);
}

.alert--error {
	background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
	border-color: rgba(231, 76, 60, 0.3);
	color: var(--oji-color-error);
}

.alert--error::before {
	background: var(--oji-color-error);
}

.alert--warning {
	background: linear-gradient(90deg, rgba(240, 173, 78, 0.1) 0%, transparent 100%);
	border-color: rgba(240, 173, 78, 0.3);
	color: var(--oji-color-warning);
}

.alert--warning::before {
	background: var(--oji-color-warning);
}

.alert--info {
	background: linear-gradient(90deg, rgba(91, 192, 222, 0.1) 0%, transparent 100%);
	border-color: rgba(91, 192, 222, 0.3);
	color: var(--oji-color-info);
}

.alert--info::before {
	background: var(--oji-color-info);
}

/* ================================================================
   Loading Spinner
   ================================================================ */
.loading-spinner {
	display: inline-block;
	width: 36px;
	height: 36px;
	border: 2px solid var(--oji-color-border);
	border-top-color: var(--oji-color-accent-gold);
	border-right-color: var(--oji-color-accent-pink);
	border-radius: 50%;
	animation: oji-spin 0.8s linear infinite;
}

.loading-spinner--sm {
	width: 24px;
	height: 24px;
	border-width: 2px;
}

.loading-spinner--lg {
	width: 56px;
	height: 56px;
	border-width: 3px;
}

@keyframes oji-spin {
	to { transform: rotate(360deg); }
}

.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--oji-space-lg);
	padding: var(--oji-space-3xl);
	color: var(--oji-color-text-muted);
}

.loading-container__text {
	font-family: var(--oji-font-display);
	letter-spacing: 0.1em;
}

/* ================================================================
   Navigation Bar
   ================================================================ */
.nav-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--oji-nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: var(--oji-space-lg);
	background: linear-gradient(180deg, rgba(15, 15, 30, 0.98) 0%, rgba(10, 10, 20, 0.95) 100%);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--oji-color-border);
	z-index: var(--oji-z-nav);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gold accent line at top */
.nav-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--oji-gradient-gold);
	opacity: 0.6;
}

.nav-bar__logo {
	font-family: var(--oji-font-display);
	font-size: var(--oji-font-size-xl);
	font-weight: var(--oji-font-weight-medium);
	background: var(--oji-gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	flex-shrink: 0;
	letter-spacing: 0.08em;
	text-shadow: none;
}

.nav-bar__logo:hover {
	text-decoration: none;
	filter: brightness(1.1);
}

.nav-bar__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.nav-bar__hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--oji-color-accent-gold) 0%, var(--oji-color-accent-pink) 100%);
	border-radius: 1px;
	transition:
		transform var(--oji-transition-fast),
		opacity var(--oji-transition-fast);
}

/* Hamburger open state */
.nav-bar__hamburger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-bar__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-bar__hamburger.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.nav-bar__menu {
	display: none;
	position: absolute;
	top: var(--oji-nav-height);
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(15, 15, 30, 0.98) 0%, rgba(10, 10, 20, 0.98) 100%);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--oji-color-border);
	padding: var(--oji-space-sm) 0;
	box-shadow: var(--oji-shadow-lg);
}

.nav-bar__menu.is-open {
	display: block;
	animation: oji-fade-in 0.2s ease-out;
}

.nav-bar__menu a {
	display: flex;
	align-items: center;
	gap: var(--oji-space-sm);
	padding: var(--oji-space-md) var(--oji-space-xl);
	color: var(--oji-color-text-muted);
	font-size: var(--oji-font-size-base);
	font-weight: var(--oji-font-weight-medium);
	text-decoration: none;
	transition: all var(--oji-transition-fast);
	position: relative;
}

.nav-bar__menu a::before {
	content: '';
	position: absolute;
	left: var(--oji-space-md);
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: var(--oji-gradient-gold);
	border-radius: 2px;
	transition: height var(--oji-transition-fast);
}

.nav-bar__menu a:hover,
.nav-bar__menu a:focus {
	color: var(--oji-color-accent-gold);
	background: var(--oji-color-accent-gold-dim);
	text-decoration: none;
	text-shadow: 0 0 8px rgba(212, 175, 87, 0.3);
}

.nav-bar__menu a:hover::before,
.nav-bar__menu a:focus::before {
	height: 60%;
}

/* Desktop nav */
@media (min-width: 768px) {
	.nav-bar__hamburger {
		display: none;
	}

	.nav-bar__menu {
		display: flex;
		position: static;
		background-color: transparent;
		backdrop-filter: none;
		border-bottom: none;
		padding: 0;
		box-shadow: none;
		gap: var(--oji-space-xxs);
	}

	.nav-bar__menu a {
		padding: var(--oji-space-xs) var(--oji-space-md);
		border-radius: var(--oji-radius-md);
		font-size: var(--oji-font-size-sm);
	}

	.nav-bar__menu a::before {
		display: none;
	}

	.nav-bar__menu a:hover,
	.nav-bar__menu a:focus {
		background: var(--oji-color-accent-gold-dim);
	}
}

/* ================================================================
   Empty State
   ================================================================ */
.empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--oji-space-3xl) var(--oji-space-lg);
	text-align: center;
	color: var(--oji-color-text-muted);
}

.empty-state__icon {
	font-size: 4rem;
	margin-bottom: var(--oji-space-lg);
	opacity: 0.3;
	background: var(--oji-gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.empty-state__title {
	font-family: var(--oji-font-display);
	font-size: var(--oji-font-size-xl);
	font-weight: var(--oji-font-weight-medium);
	margin-bottom: var(--oji-space-sm);
	color: var(--oji-color-text);
}

.empty-state__description {
	font-size: var(--oji-font-size-base);
	margin-bottom: var(--oji-space-xl);
	max-width: 280px;
}

/* ================================================================
   Plan Badge
   ================================================================ */
.plan-badge {
	display: inline-flex;
	align-items: center;
	padding: var(--oji-space-xxs) var(--oji-space-sm);
	font-size: var(--oji-font-size-xs);
	font-weight: var(--oji-font-weight-bold);
	border-radius: var(--oji-radius-pill);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.plan-badge--free {
	background: rgba(138, 138, 160, 0.15);
	color: var(--oji-color-text-muted);
	border: 1px solid rgba(138, 138, 160, 0.3);
}

.plan-badge--premium {
	background: var(--oji-gradient-gold);
	color: var(--oji-color-bg);
	box-shadow: var(--oji-shadow-glow);
	animation: oji-pulse-glow 3s ease-in-out infinite;
}

/* ================================================================
   Usage Meter
   ================================================================ */
.usage-meter {
	margin-bottom: var(--oji-space-lg);
}

.usage-meter__label {
	display: flex;
	justify-content: space-between;
	margin-bottom: var(--oji-space-xs);
	font-size: var(--oji-font-size-xs);
	color: var(--oji-color-text-muted);
}

.usage-meter__bar {
	width: 100%;
	height: 8px;
	background: var(--oji-color-surface);
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-pill);
	overflow: hidden;
}

.usage-meter__fill {
	height: 100%;
	background: var(--oji-gradient-gold);
	border-radius: var(--oji-radius-pill);
	transition: width var(--oji-transition-normal);
	position: relative;
}

/* Shimmer animation on fill */
.usage-meter__fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 100%
	);
	background-size: 200% 100%;
	animation: oji-shimmer 2s linear infinite;
}

.usage-meter__fill--warning {
	background: linear-gradient(90deg, var(--oji-color-warning) 0%, #f5c470 100%);
}

.usage-meter__fill--danger {
	background: linear-gradient(90deg, var(--oji-color-error) 0%, #e77a6f 100%);
}

/* ================================================================
   Stat Card
   ================================================================ */
.stat-card {
	text-align: center;
	padding: var(--oji-space-md);
}

.stat-card__value {
	font-family: var(--oji-font-display);
	font-size: var(--oji-font-size-2xl);
	font-weight: var(--oji-font-weight-medium);
	background: var(--oji-gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	margin-bottom: var(--oji-space-xxs);
}

.stat-card__label {
	font-size: var(--oji-font-size-xs);
	color: var(--oji-color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ================================================================
   Filter Chip
   ================================================================ */
.filter-chip {
	display: inline-flex;
	align-items: center;
	padding: var(--oji-space-xs) var(--oji-space-md);
	font-size: var(--oji-font-size-sm);
	font-weight: var(--oji-font-weight-medium);
	color: var(--oji-color-text-muted);
	background: transparent;
	border: 1px solid var(--oji-color-border);
	border-radius: var(--oji-radius-pill);
	cursor: pointer;
	transition: all var(--oji-transition-fast);
	white-space: nowrap;
}

.filter-chip:hover {
	color: var(--oji-color-text);
	border-color: var(--oji-color-border-glow);
	background: var(--oji-color-surface);
}

.filter-chip.is-active {
	color: var(--oji-color-bg);
	background: var(--oji-gradient-gold);
	border-color: var(--oji-color-accent-gold);
	box-shadow: var(--oji-shadow-glow);
}

/* ================================================================
   Divider
   ================================================================ */
.divider {
	display: flex;
	align-items: center;
	gap: var(--oji-space-md);
	margin: var(--oji-space-lg) 0;
	color: var(--oji-color-text-muted);
	font-size: var(--oji-font-size-sm);
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--oji-color-border), transparent);
}

/* ================================================================
   Decorative Elements
   ================================================================ */
.deco-diamond {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--oji-color-accent-gold);
	transform: rotate(45deg);
	margin: 0 var(--oji-space-xs);
}

.deco-line {
	width: 40px;
	height: 2px;
	background: var(--oji-gradient-gold);
	border-radius: 1px;
}
