/* start single page traveler_arrival */


/* المنتج - الكارد */
.product-card {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* العنوان */
.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

/* بروفايل الناشر */
.traveler-profile {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    margin-bottom: 20px;
}

.traveler-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.traveler-profile img {
    border-radius: 50%;
    border: 2px solid #ddd;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.traveler-profile h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #333;
}

.traveler-profile small {
    color: #777;
}

/* تفاصيل المنتج */
.product-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.product-details p {
    margin: 10px 0;
    font-size: 15px;
    color: #444;
}

.product-details strong {
    color: #3498db;
}

/* وصف المنتج */
.product-content {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* لمسة جمالية للروابط */
.product-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dashed #3498db;
}

.product-content a:hover {
    color: #217dbb;
    border-bottom: 1px solid #217dbb;
}




/* end single page traveler_arrival */
