.package-detail-page {
    padding: 115px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f3e8 100%);
    font-family: 'Poppins', sans-serif;
}

.package-detail-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 162, 74, .35);
}

.detail-brand img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #c9a24a;
    background: #111111;
}

.detail-header h1 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
}

.detail-header p {
    margin: 0;
    color: #777777;
    font-size: 14px;
}

.detail-header strong {
    color: #c9a24a;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.detail-main {
    min-width: 0;
}

.detail-gallery-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 18px 54px;
    margin-bottom: 32px;
    border: 1px solid rgba(201, 162, 74, .32);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.detail-gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

.detail-gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.detail-gallery-scroll::-webkit-scrollbar-thumb {
    background: #c9a24a;
    border-radius: 20px;
}

.detail-gallery-item {
    flex: 0 0 235px;
    height: 210px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    position: relative;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.detail-gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #111111;
    color: #c9a24a;
    z-index: 5;
    transition: all .25s ease;
}

.gallery-arrow:hover {
    background: #c9a24a;
    color: #111111;
}

.gallery-arrow-left {
    left: 12px;
}

.gallery-arrow-right {
    right: 12px;
}

.detail-description {
    background: #ffffff;
    border-radius: 26px;
    padding: 34px;
    border: 1px solid rgba(201, 162, 74, .32);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.detail-description h3 {
    color: #111111;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
    padding-bottom: 12px;
    position: relative;
}

.detail-description h3::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #c9a24a;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.detail-description p {
    color: #666666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 32px;
}

.detail-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-description ul li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #eeeeee;
    color: #333333;
    line-height: 1.7;
}

.detail-description ul li::before {
    content: "\f058";
    font-family: FontAwesome;
    color: #c9a24a;
    margin-top: 1px;
}

.detail-description ul li:last-child {
    border-bottom: none;
}

.detail-sidebar {
    position: sticky;
    top: 95px;
}

.price-box {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(201, 162, 74, .38);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .1);
    margin-bottom: 18px;
}

.price-box span {
    display: block;
    color: #777777;
    font-size: 13px;
    margin-bottom: 8px;
}

.price-box h2 {
    color: #111111;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.detail-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-chat,
.btn-order {
    display: block;
    text-align: center;
    border-radius: 16px;
    padding: 14px 20px;
    font-weight: 800;
    transition: all .25s ease;
}

.btn-chat {
    color: #c9a24a;
    border: 2px solid #c9a24a;
    background: transparent;
}

.btn-chat:hover {
    color: #111111;
    background: #c9a24a;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-order {
    color: #111111;
    border: 2px solid #c9a24a;
    background: #c9a24a;
}

.btn-order:hover {
    color: #111111;
    background: #e4c873;
    border-color: #e4c873;
    text-decoration: none;
    transform: translateY(-2px);
}

.detail-note {
    background: rgba(201, 162, 74, .12);
    border: 1px solid rgba(201, 162, 74, .35);
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    padding: 14px 18px;
    border-radius: 18px;
}

.detail-info-mini {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    border: 1px solid rgba(201, 162, 74, .28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
}

.detail-info-mini div {
    display: flex;
    gap: 10px;
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.detail-info-mini div:last-child {
    margin-bottom: 0;
}

.detail-info-mini i {
    color: #c9a24a;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .detail-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .package-detail-page {
        padding: 95px 0 65px;
    }

    .detail-header {
        align-items: flex-start;
    }

    .detail-header h1 {
        font-size: 24px;
    }

    .detail-gallery-wrapper {
        padding: 16px;
    }

    .gallery-arrow {
        display: none;
    }

    .detail-gallery-item {
        flex-basis: 240px;
        height: 220px;
    }

    .detail-description {
        padding: 24px;
    }
    #footer {
        background: #111111 !important;
        color: #cccccc !important;
    }

    #footer a,
    #footer .social-icons li a {
        color: #c9a24a !important;
    }
}