
		.newsletter-section {
			background: #eef2f5;
			padding: 60px 0;
		}

		.newsletter-box {
			background: #3a3a3a;
			border-radius: 12px;
			padding: 40px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			flex-wrap: wrap;
			gap: 20px;
		}

		/* Text */
		.newsletter-text h3 {
			color: #fff;
			font-size: 32px;
			margin-bottom: 10px;
			font-weight: 700;
		}

		.newsletter-text p {
			color: #d5d5d5;
			margin: 0;
		}

		/* Form */
		.newsletter-form {
			display: flex;
			gap: 15px;
			flex-wrap: wrap;
		}

		.newsletter-form input {
			width: 320px;
			height: 50px;
			border: none;
			border-radius: 6px;
			padding: 0 15px;
			background: #1a1818;
			color: #fff;
		}

		.newsletter-form input::placeholder {
			color: #aaa;
		}

		.newsletter-form button {
			height: 50px;
			padding: 0 28px;
			border: none;
			border-radius: 6px;
			background: #9d4948;
			color: #fff;
			font-weight: 600;
			transition: 0.3s;
		}

		.newsletter-form button:hover {
			background: #b85b5a;
		}

		/* Responsive */
		@media (max-width: 768px) {

			.newsletter-box {
				text-align: center;
				justify-content: center;
			}

			.newsletter-form {
				justify-content: center;
			}

			.newsletter-form input {
				width: 100%;
			}
		}

/* order tracking */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef2f5;
    color: #2d3b4f;
}

.tracking-section {
    padding: 30px 0;
}

.tracking-card {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 35px;
    border-radius: 6px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
}

.tracking-title {
    font-size: 18px;
    font-weight: 700;
    color: #263b5e;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 30px 1fr;
    column-gap: 15px;
    position: relative;
    padding-bottom: 28px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 100px;   /* adjust to align with dot */
    top: 20px;     /* start exactly from center of dot */
    width: 3px;
    height: 100%;
    background: #e4e9ef;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-time {
    font-size: 14px;
    color: #8a9bad;
    padding-top: 3px;
    text-align: right;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border: 4px solid #f4b72a;
    border-radius: 50%;
    background: #fff;
    margin-top: 2px; /* fine-tune vertical alignment */
}

.timeline-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #25364d;
    text-transform: uppercase;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #50627a;
}

.timeline-content .blue {
    color: #246bff;
    font-weight: 600;
}

.timeline-content .red {
    color: #f0183f;
    font-weight: 600;
}

.timeline-content .green {
    color: #00bf66;
    font-weight: 600;
}

.dot-yellow {
    border-color: #f4b72a;
}

.dot-red {
    border-color: #e52b5c;
}

.dot-blue {
    border-color: #3478f6;
}

.dot-green {
    border-color: #36c486;
}

.text-green {
    color: #00bf66 !important;
}

@media (max-width: 600px) {
    .tracking-card {
        padding: 25px 18px;
    }

    .timeline-item {
        grid-template-columns: 60px 25px 1fr;
        column-gap: 10px;
    }

    .timeline-item::before {
        left: 70px;
    }

    .timeline-time {
        font-size: 12px;
    }

    .timeline-content h4 {
        font-size: 14px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

/* table */
.tracking-table-section {
    margin-top: 40px;
}

.tracking-table-wrapper {
    max-width: 900px;
    margin: 40px auto; 
    padding: 0 15px;
}

.table-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3b4f;
}

.tracking-table-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.tracking-table {
    width: 100%;
    border-collapse: collapse;
}

.tracking-table thead {
    background: #f5f7fa;
}

.tracking-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 13px;
    color: #6c7a89;
}

.tracking-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.tracking-table tbody tr:hover {
    background: #fafafa;
}

.status {
    font-weight: 600;
}
.status.processing { color: #f4b400; }
.status.success { color: #00bf66; }
.status.warning { color: #ff9800; }
.status.delivery { color: #246bff; }
.status.done { color: #28a745; }

/* Custom Search Form Styles */
.search-tracking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}
.search-tracking-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.search-tracking-form button {
    padding: 12px 30px;
    background: #3f6ad8;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.search-tracking-form button:hover {
    background: #2b4da6;
}
