/* Delivery Page Styles */
.delivery-page .delivery-intro {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px;
	background: linear-gradient(135deg, #e0e7ff 0%, var(--main-color-1) 170%);
	border-radius: 12px;
	margin-bottom: 30px;
	border-left: 4px solid var(--main-color-1);
}

.delivery-page .intro-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-btn-gradient-1);
	border-radius: 50%;
	flex-shrink: 0;
}

.delivery-page .intro-icon svg {
	width: 32px;
	height: 32px;
	stroke: #ffffff;
}

.delivery-page .intro-text {
	font-size: 16px;
	font-weight: 500;
	color: #2d3748;
	margin: 0;
	line-height: 1.5;
}

.delivery-page .delivery-section {
	margin-bottom: 35px;
}

.delivery-page .section-title {
	font-size: 24px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--main-color-1);
	display: inline-block;
}

.delivery-page .price-highlight {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
	background: linear-gradient(135deg, #e0e7ff 0%, var(--main-color-1) 170%);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(56, 178, 172, 0.2);
}

.delivery-page .price-value {
	font-size: 32px;
	font-weight: 800;
	color: var(--main-primary-text-color);
}

.delivery-page .price-description {
	font-size: 15px;
	color: #2d3748;
	font-weight: 500;
}

.delivery-page .warning-box {
	padding: 18px 20px;
	background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
	border-left: 4px solid #ffc107;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #2d3748;
}

.delivery-page .warning-box strong {
	color: #d97706;
	display: block;
	margin-bottom: 8px;
}

.delivery-page .info-box {
	padding: 20px 25px;
	background: linear-gradient(135deg, #e0e7ff 0%, var(--main-color-1) 170%);
	border-left: 4px solid var(--main-color-1);
	border-radius: 8px;
	margin: 20px 0;
}

.delivery-page .info-box h4 {
	color: #2d3748;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
}

.delivery-page .info-box ul {
	margin: 0 0 15px 0;
	padding-left: 20px;
}

.delivery-page .info-box li {
	margin-bottom: 8px;
	color: #2d3748;
	font-size: 14px;
}

.delivery-page .info-note {
	margin: 0;
	font-size: 13px;
	color: #4a5568;
}

.delivery-page .schedule-box {
	padding: 20px 25px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin: 20px 0;
}

.delivery-page .schedule-box h3 {
	font-size: 18px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 15px;
}

.delivery-page .schedule-list {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}

.delivery-page .schedule-list li {
	padding: 10px 15px;
	margin-bottom: 8px;
	background: #f7fafc;
	border-radius: 8px;
	font-size: 15px;
	color: #2d3748;
}

.delivery-page .schedule-list strong {
	color: var(--main-color-1);
	margin-right: 10px;
}

.delivery-page .schedule-note {
	font-size: 13px;
	color: #4a5568;
	font-style: italic;
	margin: 0;
}

.delivery-page .time-slots {
	margin: 25px 0;
}

.delivery-page .time-slots h3 {
	font-size: 18px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
}

.delivery-page .time-slot-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 20px;
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	border-radius: 12px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.delivery-page .time-slot-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.delivery-page .time-badge {
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
	box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.delivery-page .time-description {
	font-size: 14px;
	color: #2d3748;
	line-height: 1.5;
}

.delivery-page .flexible-time {
	font-size: 14px;
	color: #4a5568;
	font-style: italic;
	padding: 15px 20px;
	background: #f7fafc;
	border-radius: 8px;
	margin: 15px 0;
}

.delivery-page .rules-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 25px 0;
}

.delivery-page .rule-item {
	padding: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.delivery-page .rule-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
	border-color: var(--main-color-1);
}

.delivery-page .rule-icon {
	font-size: 36px;
	margin-bottom: 12px;
}

.delivery-page .rule-item h4 {
	font-size: 16px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 10px;
}

.delivery-page .rule-item p {
	font-size: 14px;
	color: #4a5568;
	line-height: 1.6;
	margin: 0;
}

.delivery-page .delivery-contacts {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e2e8f0;
}

.delivery-page .contacts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 25px;
}

.delivery-page .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.delivery-page .contact-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.delivery-page .contact-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-btn-gradient-1);
	border-radius: 50%;
	flex-shrink: 0;
}

.delivery-page .contact-icon svg {
	width: 26px;
	height: 26px;
	stroke: #ffffff;
}

.delivery-page .contact-info {
	flex: 1;
}

.delivery-page .contact-label {
	font-size: 12px;
	color: #718096;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.delivery-page .contact-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--main-primary-text-color);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	margin-bottom: 3px;
}

.delivery-page .contact-value:hover {
	color: var(--main-color-2);
	text-decoration: none;
}

.delivery-page .contact-note {
	font-size: 11px;
	color: #a0aec0;
}

/* Responsive */
@media (max-width: 992px) {
	.delivery-page .rules-grid,
	.delivery-page .contacts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.delivery-page .section-title {
		font-size: 22px;
	}

	.delivery-page .price-value {
		font-size: 28px;
	}

	.delivery-page .time-slot-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.delivery-page .delivery-intro {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.delivery-page .section-title {
		font-size: 20px;
	}

	.delivery-page .price-highlight {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
		padding: 20px;
	}

	.delivery-page .price-value {
		font-size: 26px;
	}

	.delivery-page .price-description {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.delivery-page .delivery-intro {
		padding: 15px;
	}

	.delivery-page .intro-icon {
		width: 50px;
		height: 50px;
	}

	.delivery-page .intro-icon svg {
		width: 28px;
		height: 28px;
	}

	.delivery-page .intro-text {
		font-size: 14px;
	}

	.delivery-page .section-title {
		font-size: 18px;
	}

	.delivery-page .price-value {
		font-size: 24px;
	}

	.delivery-page .warning-box,
	.delivery-page .info-box,
	.delivery-page .schedule-box {
		padding: 15px;
		font-size: 13px;
	}

	.delivery-page .time-badge {
		padding: 8px 15px;
		font-size: 13px;
	}

	.delivery-page .time-description {
		font-size: 13px;
	}

	.delivery-page .contact-item {
		padding: 15px;
	}

	.delivery-page .contact-icon {
		width: 45px;
		height: 45px;
	}

	.delivery-page .contact-icon svg {
		width: 22px;
		height: 22px;
	}

	.delivery-page .contact-value {
		font-size: 14px;
	}
}

