/* ============================================
   Azure Bay Resort - Modern Blue Ocean Theme
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --bs-primary: #0077b6;
    --bs-secondary: #00b4d8;
    --bs-light: #caf0f8;
    --primary: #0077b6;
    --secondary: #00b4d8;
    --light: #caf0f8;
    --accent: #90e0ef;
    --dark: #023e8a;
}

/* ===== General ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

a {
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.35);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.35);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background: var(--light);
}

/* ===== Fade-in Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Header / Navbar ===== */
.navbar-modern {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.4rem 0;
}

.navbar-modern .navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.navbar-modern .navbar-brand span {
    color: var(--secondary);
}

.navbar-modern .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-modern .nav-link:hover,
.navbar-modern .nav-link.active {
    color: var(--primary);
}

.navbar-modern .navbar-toggler {
    border-color: var(--primary);
}

.navbar-modern .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,119,182,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dark navbar variants (for sub-pages) */
.navbar-dark {
    background: var(--dark);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.navbar-dark.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.4rem 0;
}

.navbar-dark .navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.navbar-dark .navbar-brand span {
    color: var(--accent);
}

.navbar-dark .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: var(--accent);
}

.lang-switcher {
    font-size: 0.85rem;
    color: #666;
    margin-right: 1rem;
}

.lang-switcher a {
    color: #666;
    font-weight: 500;
}

.lang-switcher a.active {
    color: var(--primary);
    font-weight: 700;
}

.language-switcher {
    font-size: 0.85rem;
}

.language-switcher a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-decoration: none;
}

.language-switcher a.active {
    color: #fff;
    font-weight: 700;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 62, 138, 0.6), rgba(0, 180, 216, 0.4));
    z-index: 1;
}

.hero-section img.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-section img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== Rooms Section ===== */
.rooms-section {
    padding: 100px 0;
    background: var(--light);
}

.room-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
}

.room-card .card-img-top {
    height: 240px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 1.5rem;
}

.room-card .card-title {
    font-weight: 700;
    color: var(--primary);
}

.room-card .price,
.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.room-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
}

.room-card-img {
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-meta {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

.room-meta i {
    color: var(--primary);
    margin-right: 3px;
}

.room-amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0.5rem 0;
}

.room-amenities-tags .badge {
    background: var(--light);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
}

.room-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.room-card-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
}

/* ===== Amenities Section ===== */
.amenities-section {
    padding: 100px 0;
    background: #fff;
}

.amenity-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f8fcff;
}

.amenity-item:hover {
    background: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
}

.amenity-item i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.amenity-item h5 {
    font-weight: 700;
    color: #333;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.testimonial-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card .stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 600;
}

.testimonial-card .author small {
    display: block;
    opacity: 0.8;
    font-weight: 400;
}

/* ===== News Section ===== */
.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 1.5rem;
}

.news-card .card-title a {
    color: #333;
    font-weight: 700;
    transition: color 0.3s;
}

.news-card .card-title a:hover {
    color: var(--primary);
}

.news-card .news-date,
.news-date {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

.news-category {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 80px 0;
    background: #fff;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 60px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.site-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer .footer-brand span {
    color: var(--accent);
}

.site-footer .footer-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.site-footer .footer-brand a span {
    color: var(--accent);
}

.site-footer h5,
.site-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 0.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    font-size: 1.3rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.5);
}

.scroll-top.show {
    display: flex;
}

/* ===== Booking Modal ===== */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

#bookingForm .form-control,
#bookingForm .form-select {
    border-radius: 12px;
    padding: 0.7rem 1rem;
    border: 1px solid #dee2e6;
}

#bookingForm .form-control:focus,
#bookingForm .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}

.booking-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.booking-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.booking-success h4 {
    color: var(--primary);
    font-weight: 700;
}

/* ===== Page Banner & Breadcrumb (Sub-pages) ===== */
.page-banner {
    position: relative;
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-banner .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.page-banner .breadcrumb-item a:hover {
    color: #fff;
}

.page-banner .breadcrumb-item.active {
    color: var(--accent);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===== Room Detail Page ===== */
.room-detail {
    padding: 60px 0;
}

.detail-gallery .main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.detail-gallery .thumb-list {
    display: flex;
    gap: 0.5rem;
}

.detail-gallery .thumb-list img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.detail-gallery .thumb-list img:hover,
.detail-gallery .thumb-list img.active {
    opacity: 1;
    border-color: var(--primary);
}

.room-description h3 {
    color: var(--primary);
    font-weight: 700;
}

.room-amenities h5,
.room-policies h5 {
    color: var(--primary);
    font-weight: 700;
}

.amenity-grid .item {
    transition: all 0.3s ease;
}

.amenity-grid .item:hover {
    background: var(--light) !important;
    border-color: var(--primary) !important;
}

.amenity-grid .item i {
    color: var(--primary);
}

.policy-card {
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: var(--light);
    border-color: var(--primary) !important;
}

.policy-card h6 {
    color: var(--primary);
    font-weight: 700;
}

.detail-info-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ===== Sidebar Widgets ===== */
.sidebar-widget {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #333;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.category-list li a:hover {
    color: var(--primary);
}

.category-list li a span {
    color: var(--secondary);
    font-weight: 600;
}

.popular-post {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.popular-post h6 a {
    color: #333;
    transition: color 0.3s;
}

.popular-post h6 a:hover {
    color: var(--primary);
}

.popular-post small {
    color: var(--secondary);
}

/* ===== Pagination ===== */
.pagination .page-link {
    color: var(--primary);
    border-radius: 10px;
    margin: 0 3px;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-link:hover {
    background: var(--light);
    color: var(--primary);
}

/* ===== Post Content (News Detail) ===== */
.post-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.post-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.post-content blockquote {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-meta .badge {
    font-size: 0.75rem;
}

/* ===== Post Tags ===== */
.post-tags {
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-tags h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-tags .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 0.25rem;
}

/* ===== Share Buttons ===== */
.share-buttons {
    padding-top: 1rem;
}

.share-buttons h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.share-buttons .btn {
    border-radius: 50px;
    font-size: 0.85rem;
}

/* ===== Stats Section (About page) ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.stat-item h2 {
    font-weight: 800;
    font-size: 2.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Team Cards (About page) ===== */
.team-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* ===== Gallery (About page) ===== */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

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

/* ===== Contact Page ===== */
.contact-info-card {
    padding: 1rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    margin-bottom: 0;
    color: #666;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

#contactForm .form-control {
    border-radius: 12px;
    padding: 0.7rem 1rem;
}

#contactForm .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-section,
    .rooms-section,
    .amenities-section,
    .testimonials-section,
    .news-section {
        padding: 60px 0;
    }

    .page-banner {
        padding: 100px 0 40px;
        min-height: 250px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .navbar-modern .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navbar-dark .navbar-collapse {
        background: var(--dark);
    }

    .lang-switcher {
        margin: 0.5rem 0;
    }

    .detail-gallery .main-img {
        height: 300px;
    }

    .detail-gallery .thumb-list img {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-brand {
        font-size: 1.3rem !important;
    }

    .page-banner {
        padding: 80px 0 30px;
        min-height: 200px;
    }

    .page-banner h1 {
        font-size: 1.6rem;
    }

    .room-card .card-img-top {
        height: 180px;
    }

    .news-card .card-img-top {
        height: 160px;
    }

    .detail-gallery .main-img {
        height: 220px;
    }

    .detail-gallery .thumb-list img {
        width: 60px;
        height: 45px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }
}
