@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-blue: #0d47a1;
    --primary-yellow: #ffc107;
    --accent-green: #2e7d32;
    --dark-blue: #002171;
    --light-bg: #f8f9fa;
    --bs-border-color:#ced4da;
}
body
{
    font-family: 'Mulish',sans-serif;
    font-size: 16px;
    overflow-x:hidden;
}
ul
{

}
a
{
    text-decoration: none;
}
a:hover, a:focus 
{
    text-decoration: none;
    outline: none;
}
img {
    max-width: 100%;
}

/*header*/
/* --- ĐỊNH NGHĨA BẢNG MÀU CHUYÊN NGHIỆP DỰA THEO LOGO --- */
:root {
  --pool-blue: #0093E9;          /* Xanh hồ bơi rực rỡ */
  --pool-cyan: #80D0C7;          /* Xanh cyan biển dịu mát */
  --palm-green: #38A169;         /* Xanh lá cọ từ logo SB */
  --palm-green-hover: #2f855a;
  --ocean-dark: #005c97;         /* Xanh đại dương trầm cho hiệu ứng chiều sâu */
  --sun-yellow: #FFB302;         /* Vàng ánh nắng cho điểm nhấn SALE */
}

/* --- UTILITY CLASSES --- */
.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }
.text-cyan { color: var(--pool-blue) !important; }
.hover-cyan:hover { color: var(--pool-blue) !important; }
.bg-palm-green { background-color: var(--palm-green) !important; color: #fff !important; }

/* --- LOGO --- */
.logo-beach-brand {
  max-height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-beach-brand:hover {
  transform: scale(1.03);
}

/* --- SEARCH BAR --- */
.search-box-pool .form-control {
  border: 2px solid #e2e8f0;
}
.search-box-pool .form-control:focus {
  border-color: var(--pool-blue);
  box-shadow: none;
}
.btn-pool-gradient {
  background: linear-gradient(135deg, var(--pool-blue) 0%, #0077c5 100%);
  color: #fff;
  border: none;
}
.btn-pool-gradient:hover {
  background: linear-gradient(135deg, #0077c5 0%, var(--ocean-dark) 100%);
  color: #fff;
}

/* --- GIỎ HÀNG BUTTON --- */
.btn-cart-gradient {
  background: linear-gradient(135deg, var(--pool-blue) 0%, var(--ocean-dark) 100%);
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
}
.btn-cart-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 147, 233, 0.4) !important;
}

/* --- TẠO MÀU NỀN MENU CHUYÊN NGHIỆP (GRADIENT OCEAN) --- */
/* --- PHỐI MÀU MENU MỚI: XANH LÁ CHÍNH + HỒNG PHỤ + ĐIỂM NHẤN XANH BIỂN --- */
.bg-menu-gradient {
  /* Dải chuyển màu 3 nấc: Xanh lá cọ (chủ đạo) -> Hồng San Hô (phụ) -> Xanh Biển (điểm nhấn nhỏ) */
  background: linear-gradient(90deg, #E87A90) !important;
}

/* Tùy chỉnh màu Hover các mục Menu hợp tông Hồng & Xanh */
.main-nav-links .nav-link:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2);
/*  border-radius: 6px;*/
}

/* Thẻ Khuyến Mãi/Sale điểm nhấn màu Hồng San Hô tươi nổi bật */
.highlight-sale {
  color: #FFD1DC !important; /* Hồng nhạt ánh kim */
  background: rgba(255, 255, 255, 0.15);
/*  border-radius: 6px;*/
}
/* Tùy chỉnh các liên kết Menu */
.main-nav-links .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

/* Hiệu ứng Hover dạng viên thuốc (Pill) sang trọng */


/* Menu Item đang active */
.main-nav-links .nav-link.active {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.18);
/*  border-radius: 6px;*/
}
.nav-link
{
    font-size: 0.98em;
}
/* Điểm nhấn Khuyến Mãi */

@keyframes pulseSale {
  0% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 179, 2, 0.6); }
  100% { opacity: 0.8; }
}

/* --- DROPDOWN MENU (MENU SỔ XUỐNG) --- */
.navbar-expand-lg .navbar-nav .dropdown-menu {
  border-top: 4px solid var(--palm-green) !important; /* Điểm nhấn xanh lá cọ từ logo */
  background-color: #ffffff;
}

.dropdown-item {
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f0fdf4; /* Nền xanh lá cực nhẹ */
  color: var(--palm-green) !important;
  padding-left: 1.5rem; /* Hiệu ứng đẩy chữ mượt mà */
}

/* Khung Hotline trên Menu */
.nav-hotline-box {
  background:rgb(28 142 60);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dropdown-menu
{
    padding: 0;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    animation: menuFadeIn 0.25s ease-out;
  }
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.brand-wrapper {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.brand-wrapper:hover {
  transform: translateY(-1px);
}

.brand-logo-container {
  flex-shrink: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.08));
}

.brand-name {

  font-weight: 800;
  font-size: 2em;
  color: #1AC403; 
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-slogan-offset {
  font-size: 1rem;
  font-weight: 600;
  color: #1A365D; 
  margin-top: 4px;
  margin-left: 7em;
  letter-spacing: 0.2px;
  position: relative;
      margin-bottom: 0;
}


.slogan-bullet {
  color: #0093E9; 
  font-size: 0.6rem;
  opacity: 0.85;
}

@media (max-width: 576px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .brand-slogan-offset {
    font-size: 0.75rem;
    margin-left: 12px ; 
  }
}


.hotline-box-pro {
  background: #f7fafc;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotline-box-pro:hover {
  background: #ffffff;
  border-color: #E53E3E;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15);
  transform: translateY(-2px);
}


.hotline-icon-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(229, 62, 62, 0.3);
  animation: pulsePhone 2s infinite;
}

.hotline-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0083B0; /* Xanh biển */
  letter-spacing: 0.5px;
}

.hotline-number {
/*  font-family: 'Montserrat', sans-serif;*/
  font-size: 1.25rem;
  font-weight: 800;
  color: #E53E3E;
  line-height: 1;
}

/* Hiệu ứng rung nhẹ icon điện thoại */
@keyframes pulsePhone {
  0% { transform: scale(1); }
  10% { transform: scale(1.1) rotate(-10deg); }
  20% { transform: scale(1.1) rotate(10deg); }
  30% { transform: scale(1.1) rotate(-10deg); }
  40% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Responsive cho Mobile */
@media (max-width: 576px) {
  .brand-logo {
    width: 55px;
    height: 55px;
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .brand-slogan {
    font-size: 0.75rem;
  }
}


/* --- TÙY CHỈNH Ô TÌM KIẾM NẰM TRÊN MENU --- */

.nav-search-box {
  width: 260px; /* Độ rộng ô tìm kiếm trên Desktop */
  transition: all 0.3s ease;
}

/* Khung ô tìm kiếm với hiệu ứng bóng và trong suốt nhẹ */
.search-input-group-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* Khi di chuột hoặc click vào ô tìm kiếm */
.search-input-group-menu:focus-within,
.search-input-group-menu:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.search-input-group-menu .form-control {
  background: transparent;
  color: #333;
  font-size: 0.85rem;
  box-shadow: none !important;
}

.search-input-group-menu .form-control::placeholder {
  color: #888;
  font-style: italic;
}

/* Nút bấm tìm kiếm */
/*.btn-search-menu {
  background-color: var(--palm-green, #38A169); 
  color: #ffffff !important;
  border: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}*/

/*.btn-search-menu:hover {
  background-color: #2f855a;
  color: #ffffff !important;
}*/

/* Tự động mở rộng độ rộng khi người dùng hover/focus trên màn hình lớn */
@media (min-width: 1200px) {
  .nav-search-box:focus-within {
    width: 310px;
  }
}
#mainmenu_img 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*header*/

/*slide*/

/* ==========================================
   HERO SLIDER SECTION - PROFESSIONAL STYLES
   ========================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0b0f19; /* Nền tối phòng trường hợp ảnh tải chậm */
}

/* Tùy chỉnh kích thước khung Slider */
.heroSwiper {
    width: 100%;
    height: 600px; /* Chiều cao mặc định trên Desktop */
}

/* Wrapper chứa hình ảnh */
.slide-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Style cho hình ảnh slider */
.slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 6s ease-out; /* Hiệu ứng mượt khi chuyển slide */
}

/* Hiệu ứng Ken Burns (Zoom nhẹ ảnh khi active) */
.swiper-slide-active .slide-img-wrapper img {
    transform: scale(1.08);
}

/* Lớp phủ tối (Overlay) giúp làm nổi bật chữ hoặc giữ ảnh dịu mắt */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 60%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* ------------------------------------------
   CUSTOM NAVIGATION BUTTONS (Tiến / Lùi)
   ------------------------------------------ */
.custom-nav-btn {
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px); /* Hiệu ứng kính mờ Glassmorphism */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.custom-nav-btn::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Position điều chỉnh vị trí nút */
.swiper-button-next.custom-nav-btn {
    right: 30px;
}

.swiper-button-prev.custom-nav-btn {
    left: 30px;
}

/* Hiệu ứng Hover nút */
.custom-nav-btn:hover {
    background: #1AC403; /* Màu xanh chủ đạo hồ bơi/thương hiệu của bạn */
    border-color: #1AC403;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow:0 8px 20px rgb(28 142 60 / 77%);
}

/* ------------------------------------------
   CUSTOM PAGINATION (Dots Phân Trang)
   ------------------------------------------ */
.custom-pagination {
    bottom: 25px !important;
    z-index: 10;
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    margin: 0 6px !important;
    border-radius: 30px;
    transition: all 0.4s ease;
}

/* Dấu chấm active kéo dài hiện đại */
.custom-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #e87a90; /* Màu xanh chủ đạo */
    width: 32px; /* Kéo dài thành hình dạng thanh pill */
    box-shadow: 0 0 10px rgb(232 122 144 / 71%);
}

/* ------------------------------------------
   STYLE CHO CAPTION / CHỮ MÔ TẢ (Nếu bật)
   ------------------------------------------ */
.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    color: #ffffff;
}

.caption-content {
    max-width: 650px;
}

.badge-sub {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #FFD1DC;
}

.caption-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.caption-content h2 span {
    color: #38BDF8; /* Màu highlight */
}

.caption-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ------------------------------------------
   RESPONSIVE CHO MÀN HÌNH NHỎ (Mobile/Tablet)
   ------------------------------------------ */
@media (max-width: 991px) {
    .heroSwiper {
        height: 480px; /* Chiều cao trên Tablet */
    }
    .caption-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .heroSwiper {
        height: 320px; /* Chiều cao tối ưu trên Điện thoại */
    }

    /* Ẩn bớt nút Next/Prev trên mobile để tránh che hình ảnh */
    .custom-nav-btn {
        display: none !important; 
    }

    .custom-pagination {
        bottom: 15px !important;
    }

    .caption-content h2 {
        font-size: 1.5rem;
    }

    .caption-content p {
        font-size: 0.9rem;
    }
}
/* Khung chứa slider căn giữa hình ảnh */
.slide-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
    background-color: #000;  
}

/* Ảnh cố định chiều cao (100% khung slider), chiều rộng tự nhảy theo tỷ lệ ảnh */
/*.slide-img-wrapper img {
    height: 100% !important;  
    width: auto !important;   
    max-width: none;         
    object-fit: contain;      
}*/
.slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Tự động co dãn giữ đúng tỷ lệ ảnh gốc, không bị xén hình */
}
/*slide*/

/*gioithieu*/
/* ==========================================
   ABOUT SECTION - 3D COVERFLOW & CONTENT STYLES
   ========================================== */

.about-us-section {
    background: #faf8f5; /* Nền kem nhẹ nhã nhặn */
}

/* --- CỘT SLIDER 3D --- */
.about-3d-slider-wrapper {
    padding: 20px 0;
}

/* Blob trang trí màu nền phía sau slider */
.about-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(56, 161, 105, 0.15) 0%, rgba(0, 147, 233, 0.15) 100%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}

/* Swiper 3D Container */
.aboutSwiper3D {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
    z-index: 1;
}

.aboutSwiper3D .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px; /* Độ rộng thẻ slide 3D */
    height: 420px; /* Chiều cao thẻ slide 3D */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Thẻ khung chứa hình ảnh */
.about-slide-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Tag nhãn góc trên slide 3D */
.slide-3d-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1A365D;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Phân trang dots 3D */
.about-3d-pagination .swiper-pagination-bullet {
    background: #E87A90;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.about-3d-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 10px;
    background: #E87A90;
}

/* --- CỘT MÔ TẢ NỘI DUNG --- */
.about-badge {
    display: inline-block;
    color: #2A9D8F;
    background-color: rgba(42, 157, 143, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1A365D;
    line-height: 1.25;
}

.text-gradient-green {
    background: linear-gradient(90deg, #1ac403 0%, #3f9c1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Grid Thống Kê (Counters) */
.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-weight: 800;
    color: #2A9D8F;
    font-size: 1.6rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
}

/* List Tính Năng */
.about-features-list li span {
    color: #2D3748;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Nút Bấm */
.btn-about-primary {
    background: linear-gradient(90deg, #1ac403 0%, #7dc82e 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    box-shadow: 0 6px 18px rgba(56, 161, 105, 0.35);
    transform: translateY(-2px);
}

.btn-about-outline {
    border: 1px solid #CBD5E0;
    color: #2D3748;
    background: #ffffff;
    transition: all 0.3s ease;
}

.btn-about-outline:hover {
    border-color: #1ac403;
    color: #1ac403;
    background: #f7fafc;
}

/* Responsive Điện Thoại */
@media (max-width: 767px) {
    .aboutSwiper3D .swiper-slide {
        width: 250px;
        height: 330px;
    }
    .about-title {
        font-size: 1.6rem;
    }
}
/*gioithieu*/
/*danh muc san pham trang chu*/
/* ==========================================
   FEATURED CATEGORIES - CLEAN PRICE DISPLAY
   ========================================== */

.featured-products-section {
  background-color: #FFF0F3; /* Nền hồng pastel nhẹ */
}

/* Badge Phụ Đầu Section */
.sub-badge-pink {
  display: inline-block;
  background: rgba(255, 117, 143, 0.15);
  color: #FF4D6D;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

.section-main-title {
  font-weight: 800;
  color: #1A365D;
  font-size: 2.1rem;
}

.text-highlight-pink {
  color: #FF4D6D;
  position: relative;
}

/* --- TABS CHỌN DANH MỤC --- */
.btn-cat-tab {
  background: #ffffff;
  color: #4A5568;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid #FFE5EC;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.btn-cat-tab:hover,
.btn-cat-tab.active {
  background: linear-gradient(135deg, #FF758F 0%, #FF4D6D 100%);
  color: #ffffff !important;
  border-color: #FF4D6D;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

/* --- CARD SẢN PHẨM --- */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 182, 193, 0.3);
}

.product-card:hover {
/*  transform: translateY(-5px);*/
  box-shadow: 0 12px 25px rgba(255, 117, 143, 0.2);
  border-color: #FF758F;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

/* Actions icon góc trên */
.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-action {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #2D3748;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-action:hover {
  background: #38A169; /* Xanh Lá Cọ */
  color: #ffffff;
}

/* Thông tin sản phẩm */
.product-cat {
  font-size: 0.75rem;
  color: #38A169; /* Xanh lá điểm nhấn */
  font-weight: 700;
  text-transform: uppercase;
}

.product-name a {
  color: #2D3748;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.product-name a:hover {
  color: #FF4D6D;
}

.product-price {
  margin-top: 4px;
}

.price-current {
  color: #FF4D6D; /* Giá chính màu Hồng */
  font-weight: 800;
  font-size: 1.05rem;
}

/* NÚT ĐẶT HÀNG - XANH LÁ CỌ */
.btn-add-cart {
  background: #38A169;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border: none;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: #2A9D8F;
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.35);
  transform: translateY(-1px);
}

/* --- ĐIỀU HƯỚNG SLIDER (PREV / NEXT) --- */
.cat-nav-next,
.cat-nav-prev {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff;
  border: 1px solid #FFE5EC;
  border-radius: 50%;
  color: #FF4D6D !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cat-nav-next::after,
.cat-nav-prev::after {
  font-size: 16px !important;
  font-weight: bold;
}

.cat-nav-next:hover,
.cat-nav-prev:hover {
  background: #FF4D6D;
  color: #ffffff !important;
  border-color: #FF4D6D;
}

.cat-pagination .swiper-pagination-bullet-active {
  background: #FF4D6D !important;
  width: 22px !important;
  border-radius: 10px !important;
}
/*danh muc san pham trang chu*/


/*album*/
/* --- ALBUM GALLERY SECTION STYLES --- */
.album-gallery-section {
  background: #faf8f5; /* Tông màu kem ấm sang trọng */
}

/* Bố cục Grid bất đối xứng (1 ô lớn 2x2 + 4 ô nhỏ) */
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

/* Ô đại diện lớn chiếm 2 cột & 2 hàng */
.album-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Thẻ Album Card Container */
.album-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hiệu ứng Overlay làm mờ tối mượt khi Hover */
.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.85;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.album-content {
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

/* Badges & Text */
.album-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.album-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.album-item-large .album-title {
  font-size: 24px;
}

.album-desc {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.album-icon-zoom {
  font-size: 13px;
  font-weight: 600;
  color: #ff6b81;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* --- HOVER EFFECTS --- */
.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.album-card:hover img {
  transform: scale(1.08);
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-card:hover .album-content {
  transform: translateY(0);
}

.album-card:hover .album-icon-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Nút Xem Tất Cả */
.btn-view-all-album {
  border: 2px solid #ff6b81;
  color: #ff6b81;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-all-album:hover {
  background: #ff6b81;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 107, 129, 0.3);
}

/* --- RESPONSIVE CHO MOBILE & TABLET --- */
@media (max-width: 992px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
  }
  .album-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .album-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .album-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/*album*/

/*Tin túc*/
/* --- SUBIN EDITORIAL NEWS STYLES --- */
.subin-news-section {
  background-color: #ffffff;
}

/* Khung Card Tin Tức */
.news-editorial-card {
  position: relative;
  background: #ffffff;
  padding-top: 25px; /* Dành chỗ cho số thứ tự 01, 02... */
  transition: transform 0.4s ease;
}

/* Số Thứ Tự Độc Bản Dạng Editorial */
.news-number {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 42px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.08);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  transition: color 0.3s ease;
}

.news-editorial-card:hover .news-number {
  color: #ff6b81;
}

/* Khung Ảnh & Hiệu ứng */
.news-img-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-editorial-card:hover .news-img-box img {
  transform: scale(1.08);
}

/* Floating Tag nổi trên ảnh */
.news-tag-floating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #222;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Nội dung Text */
.news-meta {
  font-size: 12px;
  color: #888;
}

.news-cat {
  color: #ff6b81;
  font-weight: 700;
  text-transform: uppercase;
}

.news-dot {
  margin: 0 4px;
}

.news-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-title a {
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.news-editorial-card:hover .news-title a {
  color: #ff6b81;
}

.news-desc {
  font-size: 13px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.news-more-btn {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.news-editorial-card:hover .news-more-btn {
  color: #ff6b81;
  transform: translateX(4px);
}

/* Nút Điều Hướng Navigation */
.news-nav-buttons .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #e0e0e0;
  transition: all 0.3s ease;
}

.news-nav-buttons .btn:hover {
  background: #ff6b81;
  border-color: #ff6b81;
  color: #ffffff;
}
/*Tin túc*/
/*form dang ky*/
/* --- SUBIN REGISTER SECTION STYLES --- */
.subin-register-section {
  background: #faf8f5;
}

/* Khung bọc tổng Gradient thời trang */
.register-wrapper {
  background: linear-gradient(135deg, #e87a90 0%, #e87a90 100%);
  box-shadow: 0 20px 40px rgba(255, 71, 87, 0.2);
  position: relative;
}

/* Badge & Typography */
.register-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.text-highlight-yellow {
  color: #ffeaa7;
}

.register-benefits .icon-circle {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Card Form Cột Phải */
.register-card {
  border-radius: 20px;
  background: #ffffff;
}

.form-title {
  color: #222222;
  font-weight: 800;
  font-size: 24px;
}

/* Custom Input Floating Fields */
.form-floating .form-control,
.form-floating .form-select {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: #ff6b81;
  box-shadow: 0 0 0 4px rgba(255, 107, 129, 0.15);
}

.form-floating label {
  font-size: 13px;
  color: #718096;
}

/* Button Submit */
.btn-submit-register {
  background: linear-gradient(135deg, #2d3436, #000000);
  color: #ffffff;
  border: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit-register:hover {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .register-title {
    font-size: 26px;
  }
}
/*form dang ky*/

/*footer*/
/* --- SUBIN FOOTER LIGHT PREMIUM STYLES --- */
.subin-footer {
  /* Nền kem sáng cao cấp pha chút ánh hồng nhạt */
  background: linear-gradient(180deg, #fbf9f8 0%, #f4efe9 100%);
  color: #4a5568;
  border-top: 3px solid #ff6b81; /* Viền hồng thương hiệu */
}

/* Tiêu đề cột */
.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a202c;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b81, #ff8e9e);
  border-radius: 2px;
}

/* Chữ mô tả & danh sách thông tin */
.company-desc {
  color: #64748b !important;
  line-height: 1.6;
}

.contact-list span {
  color: #334155;
}

/* Highlight & Hover */
.text-pink {
  color: #ff6b81 !important;
}

.hover-pink:hover {
  color: #ff6b81 !important;
}

/* Nút Mạng Xã Hội Tone Sáng */
.social-btn {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.social-btn:hover {
  background: #ff6b81;
  border-color: #ff6b81;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 129, 0.25);
}

/* Khung Viền Map & Fanpage */
.map-box,
.fb-card-wrapper {
  border: 1px solid #e2e8f0 !important;
  background: #ffffff;
}

.map-box iframe,
.fb-card-wrapper iframe {
  display: block;
  border-radius: 8px;
}

/* Hàng Copyright Dưới Cùng */
.footer-bottom {
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid #e2e8f0 !important;
}

.footer-bottom-text {
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title::after {
    left: 0;
  }
}

.map-box iframe {
    height: 180px;
}

/*footer*/


/*trang gioi thieu*/
/* --- SUBIN BREADCRUMB & ABOUT STYLES --- */

/* Breadcrumb */
.subin-breadcrumb-section {
  background-color: #fafafa;
  border-bottom-color: #edf2f7 !important;
}


/* Giới hạn 2 dòng tên sản phẩm */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px; /* Đảm bảo chiều cao đồng đều giữa các item */
}

/* CSS Phân trang */
.pagination-wrapper .pagination {
  justify-content: center;
  gap: 4px;
}

.pagination-wrapper .page-link {
  color: #555;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  font-size: 13px;
}

.pagination-wrapper .page-item.active .page-link {
  background-color: #ff6b81;
  border-color: #ff6b81;
  color: #fff;
}

/*trang san pham*/

/*trang chi tuiet*/
/* --- COLOR & COMMON STYLES --- */
.text-pink { color: #ff6b81 !important; }
.bg-pink { background-color: #ff6b81 !important; }
.hover-pink:hover { color: #ff6b81 !important; }
.border-pink { border-color: #ff6b81 !important; }

.btn-pink-custom {
  background-color: #ff6b81;
  color: #fff;
  border: 1px solid #ff6b81;
  transition: all 0.3s ease;
}
.btn-pink-custom:hover {
  background-color: #e0556b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 129, 0.3);
}

/* Breadcrumb Custom Separator */
.breadcrumb-item-custom + .breadcrumb-item-custom::before {
  content: "/";
  padding: 0 8px;
  color: #a0aec0;
}

/* Detail Main Layout */
.pdetail-v2-main-image-wrap {
/*  aspect-ratio: 1 / 1;*/
/*  max-height: 480px;*/
}
.pdetail-v2-main-image-wrap img {
  height: 100%;
}

/* Thumbnails Slick Slider Custom */
.pdetail-v2-thumb-card {
  aspect-ratio: 1 / 1;
  opacity: 0.6;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pdetail-v2-thumb-card.active, 
.pdetail-v2-thumb-card:hover {
  opacity: 1;
  border-color: #ff6b81 !important;
}
.pdetail-v2-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrow buttons for thumbnail slick */
.pdetail-v2-slick-prev, .pdetail-v2-slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.pdetail-v2-slick-prev { left: 0; }
.pdetail-v2-slick-next { right: 0; }
.pdetail-v2-slick-prev:hover, .pdetail-v2-slick-next:hover {
  background: #ff6b81;
  color: #fff;
  border-color: #ff6b81;
}

/* Social Buttons */
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.facebook { background: #3b5998; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.gmail { background: #ea4335; }

/* Tabs active style */
#myDynamicTabs .nav-link.active {
  background-color: #fff5f7 !important;
  color: #ff6b81 !important;
  border: 1px solid #ffe3e8 !important;
}

/* Related Product Card */
.ratio-product { aspect-ratio: 350 / 420; }
.product-card { transition: all 0.3s ease; }
.product-card:hover {
  transform: translateY(-4px);
  border-color: #ff6b81 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img { transition: transform 0.4s ease; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}
/*trang chi tuiet*/

/*bo sung*/
.tungtinnews {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.news-page-subtitle {display: block;margin-bottom: 10px;}
h2.news-page-title {
    font-weight: 700;
}

/* Styling cho bài viết liên quan */
.news-related-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
    border-color: var(--bs-primary) !important;
}

/* Khung ảnh thumbnail cố định kích thước */
.news-related-thumb {
    width: 80px;
    height: 70px;
    background-color: #f8f9fa;
}

/* Hiệu ứng zoom nhẹ cho hình ảnh khi hover */
.transition-img {
    transition: transform 0.3s ease;
}

.news-related-card:hover .transition-img {
    transform: scale(1.08);
}

/* Đổi màu chữ bài viết khi hover */
.hover-primary {
    transition: color 0.2s ease;
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

/* Giới hạn 2 dòng tiêu đề bài viết */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
}

/* Font size 12px hỗ trợ */
.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}


/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Utility Font Sizes & Spacing */


.fs-12 { font-size: 0.75rem; }
.fs-13 { font-size: 0.8125rem; }
.fs-14 { font-size: 0.875rem; }
.fs-15 { font-size: 0.9375rem; }

.py-2-5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.max-w-700 {
  max-width: 700px;
}

.hover-primary {
  transition: color 0.2s ease;
}
.hover-primary:hover {
  color: var(--bs-primary) !important;
}

/* Header Separator */
.contact-page-separator {
  width: 50px;
  height: 3px;
}

/* Icon Shape Background */
.icon-shape {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

/* Border separator for desktop */
@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid var(--bs-border-color) !important;
  }
}

/* Modern Input Styling */
.input-group-modern {
/*  border-radius: 0.5rem;*/
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.input-group-modern .input-group-text {
  border-color: var(--bs-border-color);
  background-color: #f8f9fa;
}

.input-group-modern .form-control {
  border-color: var(--bs-border-color);
  font-size: 0.875rem;
  box-shadow: none !important;
  outline: none;
}

/* Focus State */
.input-group-modern:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.input-group-modern:focus-within .input-group-text,
.input-group-modern:focus-within .form-control {
  border-color: var(--bs-primary);
}

.custom-textarea {
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.custom-textarea:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Submit & Reset Buttons */
.btn-submit-modern {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25) !important;
}

.btn-reset-modern {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Responsive Google Map Embed */
.contact-page-map-embed iframe {
  width: 100% !important;
  height: 400px !important;
  border: 0;
  display: block;
}





/* 4. Grid Container for Items */
.search-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Responsive Grid adjustment for lower break points */
@media (max-width: 575.98px) {
  .search-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1rem;
  }
}

/* 5. Item Cards (Applied to items generated by get_dichvu_items) */
.search-items-grid .item,
.search-items-grid .box-service,
.search-items-grid .product-item {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid var(--bs-border-color);
  padding: 1rem;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-items-grid .item:hover,
.search-items-grid .box-service:hover,
.search-items-grid .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(13, 110, 253, 0.3);
}

.search-items-grid img {
  border-radius: 0.5rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.search-items-grid .item:hover img,
.search-items-grid .box-service:hover img,
.search-items-grid .product-item:hover img {
  transform: scale(1.03);
}


/*bo sung*/