/* =========================================
   1. BIẾN DÙNG CHUNG (VARIABLES)
   ========================================= */
:root {
    --db-pink: #f1a7b3;
    --db-dark-pink: #e08e9b;
    --db-light-pink: #fff5f6;
    --db-dark: #333;
    --db-transition-story: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   2. CẤU TRÚC CHUNG (GLOBAL LAYOUT)
   ========================================= */
.main-content-wrapper {
    padding-top: 100px;
}

.font-cursive {
    font-family: 'Dancing Script', cursive;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Hiệu ứng Menu Dropdown trên Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-item:active {
    background-color: var(--db-pink);
}

/* =========================================
   3. TÌM KIẾM GỢI Ý (SEARCH AUTOCOMPLETE)
   ========================================= */
.search-wrapper {
    position: relative;
    min-width: 200px;
}

.suggestion-container {
    position: absolute;
    top: 110%;
    right: 0;
    width: 320px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}

.suggestion-item {
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f8f8f8;
    cursor: pointer;
    transition: 0.2s;
}

    .suggestion-item:hover {
        background-color: var(--db-light-pink);
    }

    .suggestion-item img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin-right: 12px;
        border-radius: 6px;
    }

.suggestion-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--db-dark);
    line-height: 1.2;
}

.suggestion-info .s-price {
    color: var(--db-pink);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* =========================================
   4. TRANG CHỦ (HOME PAGE)
   ========================================= */
.hero-section {
    height: 100vh;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.tracking-widest {
    letter-spacing: 0.5rem;
}

.ls-2 {
    letter-spacing: 2px;
}

.section-title {
    color: var(--db-pink);
    font-size: 3.5rem;
    margin-bottom: -10px;
    opacity: 0.6;
}

.featured-card {
    height: 450px;
    position: relative;
    transition: 0.4s ease;
}

    .featured-card:hover {
        transform: translateY(-10px);
    }

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.bg-pink {
    background-color: var(--db-pink);
}

.about-img-frame {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--db-pink);
    z-index: 1;
}

.collection-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

    .collection-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

.collection-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--db-pink);
    transition: 0.3s;
    text-decoration: none;
}

.collection-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.collection-item:hover .collection-link {
    transform: translate(-50%, -50%) scale(1);
}

/* =========================================
   5. TRANG DỰ ÁN (PROJECT PAGE)
   ========================================= */
.project-hero-header {
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.main-hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white !important;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--db-pink);
    margin-top: 20px;
}

.ls-5 {
    letter-spacing: 10px;
    font-weight: 300;
}

.py-custom-space {
    padding: 150px 0;
}

.mb-200 {
    margin-bottom: 200px;
}

.project-frame-wrapper {
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.1);
}

.project-main-img {
    transition: var(--db-transition-story);
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.project-frame-wrapper:hover .project-main-img {
    transform: scale(1.05);
}

.floating-accent-box, .floating-accent-box-right {
    position: absolute;
    width: 300px;
    height: 400px;
    background-color: var(--db-light-pink);
    z-index: 1;
}

.floating-accent-box {
    top: -40px;
    left: -40px;
}

.floating-accent-box-right {
    bottom: -40px;
    right: -40px;
}

.project-meta {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--db-pink);
    display: block;
    margin-bottom: 15px;
    font-style: italic;
}

.project-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--db-dark);
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--db-pink);
    margin-bottom: 40px;
}

.btn-story-link {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px 0;
    color: var(--db-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #eee;
    transition: var(--db-transition-story);
}

    .btn-story-link:hover {
        color: var(--db-pink);
        border-bottom-color: var(--db-pink);
    }

/* =========================================
   6. TRANG MENU SẢN PHẨM (MENU PAGE)
   ========================================= */
.menu-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(241, 167, 179, 0.2));
    z-index: 2;
}

.category-tabs .nav-link {
    color: #888;
    background: none;
    padding: 15px 25px;
    border: none;
    border-bottom: 2px solid transparent !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .category-tabs .nav-link.active {
        color: var(--db-pink) !important;
        border-bottom: 2px solid var(--db-pink) !important;
    }

    .category-tabs .nav-link:hover {
        color: var(--db-pink);
        transform: translateY(-3px);
    }

/* =========================================
   7. TRANG GIỎ HÀNG (SHOPPING CART)
   ========================================= */
.cart-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

#cart-table thead th {
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    color: #888;
    letter-spacing: 1px;
}

.table > :not(caption) > * > * {
    padding: 20px 10px;
    border-bottom: 1px solid #f9f9f9;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 4px;
    width: fit-content;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--db-dark);
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .quantity-btn:hover {
        background: var(--db-pink);
        color: white;
    }

.remove-btn {
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

    .remove-btn:hover {
        color: #e74c3c;
        transform: scale(1.1);
    }

/* =========================================
   8. TRANG LIÊN HỆ (CONTACT PAGE)
   ========================================= */
.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/anh_hoa_hong.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--db-light-pink);
    color: #ffffff !important;
}

.text-pink-header {
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-header p, .contact-header h6 {
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
    opacity: 1 !important;
}

.form-control-custom {
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 0;
}

    .form-control-custom:focus {
        border-color: var(--db-pink);
        box-shadow: none;
        outline: none;
    }

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--db-pink);
    opacity: 0.5;
}

/* =========================================
   9. NÚT BẤM (BUTTONS) DÙNG CHUNG
   ========================================= */
.btn-pink-solid, .btn-submit-flower, .btn-pink {
    background-color: var(--db-pink);
    color: white !important;
    padding: 12px 30px;
    border: none;
    transition: 0.3s;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
}

    .btn-pink-solid:hover, .btn-submit-flower:hover, .btn-pink:hover {
        background-color: var(--db-dark-pink);
        color: white !important;
        transform: translateY(-3px);
    }

.btn-outline-pink {
    border: 1px solid var(--db-pink);
    color: var(--db-pink);
    padding: 12px 30px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-pink:hover {
        background: var(--db-pink);
        color: white;
    }

.text-pink {
    color: var(--db-pink) !important;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* =========================================
   10. TÙY CHỈNH FOOTER NỀN ẢNH (FOOTER IMG BG)
   ========================================= */
.footer-custom-bg {
    /* Lớp phủ đen mờ giúp chữ trắng nổi bật trên nền ảnh */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/banner_footer.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Hiệu ứng cuộn ảnh nhẹ nhàng */
}

    /* Đảm bảo màu chữ phụ (secondary) hiển thị rõ trên nền tối */
    .footer-custom-bg .text-secondary {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Hiệu ứng hover cho các link trong footer */
    .footer-custom-bg a.text-secondary:hover {
        color: var(--db-pink) !important;
        text-decoration: none;
    }

    /* Tùy chỉnh đường kẻ ngang trong footer cho mảnh và tinh tế hơn */
    .footer-custom-bg hr.border-secondary {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

/* =========================================
   11. BỔ SUNG CHO TRANG THANH TOÁN
   ========================================= */
.color-pink {
    color: var(--db-pink) !important;
}

/* Hiệu ứng focus cho các ô nhập liệu tại trang thanh toán */
.form-control:focus {
    border-color: var(--db-pink);
    box-shadow: 0 0 0 0.25rem rgba(241, 167, 179, 0.25);
}
/* --- Tối ưu Header & Menu --- */
.navbar-brand {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Ép menu nằm trên 1 hàng và tự cân đối khoảng cách */
.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: center;
}

    .navbar-nav .nav-link {
        white-space: nowrap;
        padding-left: clamp(0.5rem, 1vw, 1rem) !important;
        padding-right: clamp(0.5rem, 1vw, 1rem) !important;
        transition: color 0.3s ease;
    }

/* Cố định cụm tìm kiếm để không chiếm không gian của menu */
.search-wrapper {
    width: 180px;
    position: relative;
}

@media (max-width: 1399px) {
    .search-wrapper {
        width: 140px;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }
}

/* Hiệu ứng và màu sắc */
.hover-pink:hover {
    color: #f1a7b3 !important;
}

.text-pink {
    color: #f1a7b3 !important;
}

/* CSS cho Search Suggestions */
.suggestion-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1050;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

    .suggestion-item:hover {
        background-color: #fff5f6;
    }

    .suggestion-item img {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        object-fit: cover;
        margin-right: 10px;
    }

.suggestion-info p {
    margin: 0;
    font-size: 0.85rem;
}

.s-price {
    color: #f1a7b3;
    font-weight: bold;
}

/* Footer Background */
.footer-custom-bg {
    background-color: #1a1a1a;
}
/* Container phủ toàn màn hình với ảnh nền */
.glass-login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Đảm bảo đè lên mọi thứ */
}

/* Hiệu ứng kính mờ Glassmorphism */
.glass-card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.glass-title {
    color: #f1a7b3; /* Giữ màu hồng đặc trưng */
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.8rem;
    text-align: center;
}

.glass-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-align: center;
}

/* Tùy chỉnh Input phong cách xuyên thấu */
.glass-input-group {
    margin-bottom: 20px;
}

    .glass-input-group label {
        display: block;
        color: white;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .glass-input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 12px 15px;
        color: white;
        outline: none;
        transition: 0.3s;
    }

        .glass-input-group input:focus {
            background: rgba(255, 255, 255, 0.3);
            border-color: #f1a7b3;
        }

        .glass-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

/* Nút bấm màu hồng */
.glass-btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #f1a7b3;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 10px;
}

    .glass-btn-submit:hover {
        background-color: #e096a2;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(241, 167, 179, 0.4);
    }

.glass-back-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: 0.3s;
}

    .glass-back-link:hover {
        opacity: 1;
        color: #f1a7b3;
    }

.alert-glass {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ffcccc;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 20px;
}
/* --- LOGIN TEST INFO STYLES --- */
.test-account-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

    .test-account-box:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.15);
    }

    .test-account-box code {
        color: #fff !important;
        background: rgba(0, 0, 0, 0.25) !important;
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Courier New', Courier, monospace;
    }

.text-pink {
    color: #f1a7b3 !important;
}

/* Tận dụng lại các biến CSS nếu bạn có dùng trong glass-login */
.glass-back-link {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: color 0.3s;
}

    .glass-back-link:hover {
        color: #f1a7b3;
    }
/* --- DAIBAO GARDEN: CUSTOM NAVIGATION STYLES --- */

/* Ép thanh điều hướng cố định trên cùng */
.navbar-custom {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    /* Hiệu ứng kính mờ (Glassmorphism) */
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Hiệu ứng khi cuộn trang (được kích hoạt bởi JS) */
    .navbar-custom.shadow-blur {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        background-color: rgba(255, 255, 255, 0.95) !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

/* Đẩy nội dung body xuống để không bị Navbar che mất */
body {
    padding-top: 75px;
}

/* Tùy chỉnh ô tìm kiếm để tàng hình vào nền kính */
.search-wrapper .input-group {
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 2px 10px;
    transition: background 0.3s ease;
}

    .search-wrapper .input-group:focus-within {
        background-color: rgba(0, 0, 0, 0.08);
    }

/* Màu chữ hồng đặc trưng của thương hiệu */
.text-pink {
    color: #f1a7b3 !important;
}
/* Hero Section */
.hero-section {
    height: 90vh;
}

.text-shadow {
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

/* Title Line */
.title-line {
    width: 60px;
    height: 3px;
    background-color: #f1a7b3;
    margin-top: 15px;
}

/* Featured Card Premium */
.featured-card-premium {
    height: 450px;
    border-radius: 15px;
}

    .featured-card-premium img {
        transition: transform 1s ease;
    }

    .featured-card-premium:hover img {
        transform: scale(1.08);
    }

.card-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* About Image Styles */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid #fff5f6;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: #f1a7b3;
    color: white;
    padding: 20px;
    border-radius: 50%;
    z-index: 3;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Collection Card New */
.collection-card-new .collection-img-box {
    position: relative;
    border-radius: 20px;
}

.hover-content {
    position: absolute;
    inset: 0;
    background: rgba(241, 167, 179, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.collection-card-new:hover .hover-content {
    opacity: 1;
}

.collection-card-new img {
    transition: 0.5s;
}

.collection-card-new:hover img {
    transform: scale(1.1);
    filter: blur(2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

    .mouse::before {
        content: '';
        width: 4px;
        height: 8px;
        background: white;
        position: absolute;
        left: 50%;
        top: 8px;
        transform: translateX(-50%);
        border-radius: 2px;
        animation: scrollWheel 2s infinite;
    }

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}
/* Parallax Section */
.parallax-section {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
}

/* Featured Card mini */
.card-overlay-mini {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: 0.3s;
}

/* Background light pink */
.bg-pink-light {
    background-color: #fffafa;
}

/* Testimonial Section */
.testimonial-section {
    background: #fff5f6;
}

/* Instagram Images */
.insta-img {
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: 0.3s;
    cursor: pointer;
}

    .insta-img:hover {
        filter: brightness(1);
        transform: scale(1.05);
        z-index: 2;
    }

/* Blog Post */
.blog-post img {
    transition: 0.4s;
    cursor: pointer;
}

.blog-post:hover img {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Animation delay */
.animate__delay-1s {
    animation-delay: 1s;
}
/* =======================================================
   HIỆU ỨNG TRỒI LÊN TOÀN TRANG (DAIBAO GARDEN CUSTOM)
   ======================================================= */

/* Class bổ trợ cho việc xuất hiện khi cuộn chuột */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 1s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, opacity;
}

    /* Khi phần tử vào vùng nhìn thấy sẽ kích hoạt class này qua JS */
    .reveal-on-scroll.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

/* Tối ưu cho thiết bị di động (hiệu ứng nhanh hơn một chút) */
@media (max-width: 768px) {
    .reveal-on-scroll {
        transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
        transform: translateY(20px) !important;
    }
}
/* --- TRANG VỀ CHÚNG TÔI (ABOUT US) --- */

/* Màu hồng chủ đạo cho các icon và nút */
.text-pink {
    color: #f1a7b3 !important;
}

.bg-light-pink {
    background-color: #fff5f6;
}

/* Nút bấm viền hồng hiệu ứng trượt */
.btn-outline-pink {
    border: 1px solid #f1a7b3;
    color: #f1a7b3;
    border-radius: 25px;
    transition: all 0.4s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-pink:hover {
        background-color: #f1a7b3;
        color: #ffffff !important;
        transform: translateY(-3px);
        /* Sửa từ shadow thành box-shadow ở đây */
        box-shadow: 0 5px 15px rgba(241, 167, 179, 0.3);
    }

/* Hiệu ứng bo góc cho ảnh giới thiệu */
.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Font chữ viết tay cho các tiêu đề nghệ thuật */
.font-cursive {
    font-family: 'Dancing Script', cursive;
}

/* Tinh chỉnh khoảng cách cho các icon giá trị cốt lõi */
.bi-flower1, .bi-brush, .bi-truck {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hiệu ứng khi hover vào khối reveal-on-scroll */
.reveal-on-scroll:hover .bi-flower1,
.reveal-on-scroll:hover .bi-brush,
.reveal-on-scroll:hover .bi-truck {
    transform: scale(1.2) rotate(10deg);
}

/* Hiệu ứng bóng đổ nhẹ cho ảnh trong trang giới thiệu */
.shadow-about {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }
}
/* --- DAIBAO GARDEN: ABOUT PAGE UPDATED (4 MEMBERS) --- */
:root {
    --huge-padding: 8rem; /* Giảm nhẹ để cân đối 4 người */
    --main-pink: #f1a7b3;
}

.py-huge {
    padding-top: var(--huge-padding);
    padding-bottom: var(--huge-padding);
}

.bg-light-gray {
    background-color: #f8f8f8;
}

.text-pink {
    color: var(--main-pink) !important;
}

/* --- Hero Section --- */
.about-hero-modern {
    background-color: #000;
}

    .about-hero-modern .img-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        z-index: 1;
    }

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 2;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* --- Stat Boxes --- */
.stat-box {
    padding: 20px;
}

/* --- Team Section (4 Members) --- */
.team-portrait-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Đảm bảo ảnh luôn vuông dù gốc là chữ nhật */
    overflow: hidden;
    border-radius: 50%; /* Tạo hình tròn xịn xò */
    border: 1px solid rgba(241, 167, 179, 0.2);
}

    .team-portrait-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1); /* Hiệu ứng trắng đen nghệ thuật */
        transition: all 0.5s ease;
    }

    .team-portrait-wrapper:hover img {
        filter: grayscale(0); /* Hiện màu khi di chuột vào */
        transform: scale(1.08); /* Phóng lớn nhẹ */
    }

/* --- Responsive fixes --- */
@media (max-width: 768px) {
    :root {
        --huge-padding: 4rem;
    }

    .display-1 {
        font-size: 3.2rem;
    }

    /* Đổi gạch dọc thành gạch ngang trên mobile */
    .stat-box {
        border-left: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .team-portrait-wrapper {
        max-width: 280px; /* Không để ảnh quá to trên điện thoại */
        margin: 0 auto;
    }
}
/* --- DAIBAO GARDEN: ULTIMATE ATELIER POLICY CSS --- */
:root {
    --main-pink: #f1a7b3;
    --dark-atelier: #1a1a1a;
    --light-pink: #fff0f3;
}

.atelier-policy-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-atelier);
    background: #fff;
    overflow-x: hidden;
}

.py-huge {
    padding: 100px 0;
}

/* 1. HERO SECTION & FRAME ART */
.policy-hero-minimal {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, #fcfcfc, #fff);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--dark-atelier);
}

.tracking-widest {
    letter-spacing: 0.3em;
}

.border-pink {
    border-color: var(--main-pink) !important;
}

/* Hiệu ứng khung ảnh nghệ thuật */
.hero-image-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .hero-image-frame:hover {
        transform: rotate(0deg) scale(1.05);
    }

.policy-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: sepia(5%) contrast(102%);
}

.frame-label {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--dark-atelier);
    color: white;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.small-year {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.label-line {
    width: 30px;
    height: 1px;
    background: var(--main-pink);
    margin: 6px 0;
}

.small-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* 2. POLICY GRID & ROWS */
.policy-row {
    transition: all 0.4s ease;
}

    .policy-row:hover {
        background-color: #fafafa;
    }

.border-top-dark {
    border-top: 3px solid var(--dark-atelier) !important;
}

.fw-black {
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
}

/* List Styles */
.list-atelier {
    padding-left: 0;
    list-style: none;
}

    .list-atelier li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

        .list-atelier li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--main-pink);
            font-weight: bold;
        }

/* 3. PAYMENT CARD PREMIUM */
.payment-card-premium {
    background: var(--dark-atelier);
    color: #fff;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

    .payment-card-premium::after {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: var(--main-pink);
        filter: blur(80px);
        opacity: 0.3;
    }

.bank-details-box {
    background: rgba(255,255,255,0.05);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pay-icon {
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
    background: white;
}

    .pay-icon:hover {
        border-color: var(--main-pink);
        color: var(--main-pink);
    }

.bg-soft-pink {
    background-color: var(--light-pink);
    color: #d68a96;
}

/* 4. FOOTER & MISC */
.bg-light-pink {
    background-color: #fff9fa;
}

@media (max-width: 991px) {
    .display-2 {
        font-size: 3rem;
    }

    .py-huge {
        padding: 60px 0;
    }

    .col-lg-3 {
        margin-bottom: 25px;
    }

    .hero-image-frame {
        display: none;
    }
    /* Ẩn ảnh trên mobile để tối ưu diện tích */
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid !important;
    }
}

/* Animations delay */
.policy-row:nth-child(1) {
    animation-delay: 0.1s;
}

.policy-row:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-row:nth-child(3) {
    animation-delay: 0.3s;
}

.policy-row:nth-child(4) {
    animation-delay: 0.4s;
}
/* DAIBAO GARDEN: ULTIMATE CONTACT ATELIER CSS 
   Version: 2.0 (Premium)
*/

:root {
    --db-pink: #f1a7b3;
    --db-dark: #1a1a1a;
    --db-soft: #fff0f3;
    --db-grey: #f8f9fa;
    --db-border: #eeeeee;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atelier-contact-wrapper {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: var(--db-dark);
}

.py-huge {
    padding: 120px 0;
}

.mt-huge {
    margin-top: 100px;
}

/* --- 1. HERO SECTION --- */
.contact-hero-minimal {
    padding: 140px 0 60px;
    background: linear-gradient(to bottom, var(--db-grey), #fff);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--db-dark);
}

.tracking-widest {
    letter-spacing: 0.3em;
}

.border-pink {
    border-color: var(--db-pink) !important;
}

/* --- 2. SIDEBAR INFO --- */
.atelier-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--db-pink);
    margin-bottom: 12px;
    display: block;
}

.atelier-val {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-text-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--db-dark);
    border-bottom: 1px solid var(--db-pink);
    padding-bottom: 2px;
    transition: var(--transition);
}

    .btn-text-link:hover {
        color: var(--db-pink);
        letter-spacing: 1px;
    }

.social-circle-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--db-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--db-dark);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--db-border);
}

    .social-circle-link:hover {
        background: var(--db-pink);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(241, 167, 179, 0.3);
    }

/* --- 3. FORM PREMIUM --- */
.form-premium-card {
    background: #fff;
    position: relative;
}

.border-start-lg {
    border-left: 1px solid var(--db-border);
}

/* Floating Label Animation */
.floating-group {
    position: relative;
    margin-bottom: 10px;
}

.atelier-input {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    transition: var(--transition);
    color: var(--db-dark);
}

.floating-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.input-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--db-pink);
    transition: var(--transition);
}

/* State: Focus & Filled */
.atelier-input:focus + label,
.atelier-input:not(:placeholder-shown) + label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--db-pink);
    font-weight: 700;
}

.atelier-input:focus ~ .input-bar {
    width: 100%;
}

/* Custom Submit Button */
.btn-atelier-primary {
    position: relative;
    width: 100%;
    height: 65px;
    background: var(--db-dark);
    color: #fff;
    border: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    transition: var(--transition);
}

.btn-icon {
    position: absolute;
    right: -50px;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 2;
}

.btn-atelier-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--db-pink);
    transition: var(--transition);
    z-index: 1;
}

.btn-atelier-primary:hover::before {
    left: 0;
}

.btn-atelier-primary:hover .btn-text {
    transform: translateX(-20px);
}

.btn-atelier-primary:hover .btn-icon {
    right: 40px;
}

/* --- 4. MAP SECTION --- */
.map-premium-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.map-card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 25px 35px;
    z-index: 10;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
    border-left: 4px solid var(--db-pink);
}

/* --- 5. RESPONSIVE --- */
@media (max-width: 991px) {
    .py-huge {
        padding: 60px 0;
    }

    .display-2 {
        font-size: 3rem;
    }

    .border-start-lg {
        border-left: none;
    }

    .form-premium-card {
        padding: 0 !important;
        margin-top: 50px;
    }

    .atelier-info-sidebar {
        border-bottom: 1px solid var(--db-border);
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .contact-hero-minimal {
        padding-top: 100px;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .btn-atelier-primary:hover .btn-text {
        transform: none;
    }

    .btn-atelier-primary:hover .btn-icon {
        right: 20px;
    }
}

/* Font Cursive Support */
.font-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
/* --- TRANG CHI TIẾT SẢN PHẨM (DAIBAO GARDEN STYLE) --- */
.product-detail-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.product-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.main-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-info-wrapper {
    padding-left: 40px;
}

.breadcrumb-nav {
    font-size: 12px;
    color: #999;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.product-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.product-main-price {
    font-size: 22px;
    color: #b58e7e; /* Màu nâu trầm sang trọng */
    font-weight: 600;
    margin-bottom: 30px;
}

.product-description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

/* Nút THÊM NGAY thiết kế theo ảnh mẫu */
.btn-buy-now {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    max-width: 280px;
    padding: 15px 0;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-buy-now:hover {
        background-color: #333333;
        letter-spacing: 3px;
    }

/* Phần thông tin bổ sung */
.product-extra-details {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
}

.extra-item {
    margin-bottom: 10px;
    display: flex;
}

.extra-label {
    font-weight: 700;
    color: #222;
    width: 130px;
    flex-shrink: 0;
}

.extra-value {
    color: #555;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .product-info-wrapper {
        padding-left: 15px;
        margin-top: 30px;
    }

    .product-main-title {
        font-size: 28px;
    }
}