        .hero-banner {
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: #ffffff;
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 0;
            overflow: hidden;
        }

        .hero-banner-carousel .carousel-indicators {
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: auto;
            right: auto;
            transform: translate(-50%, -50%);
            flex-direction: column;
            margin: 0;
            width: 100%;
            max-width: 1320px;
            padding: 0 15px;
            z-index: 15;
            align-items: flex-end;
            pointer-events: none;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target] {
            width: 10px !important;
            height: 10px !important;
            background-color: transparent !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 0 15px 0 !important;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
            pointer-events: auto !important;
            position: relative !important;
            opacity: 1 !important;
            text-indent: 0 !important;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target]::before {
            content: "" !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 10px !important;
            height: 10px !important;
            background-color: rgba(255, 255, 255, 0.4) !important;
            transform: rotate(45deg) !important;
            transition: all 0.3s ease !important;
        }

        .hero-banner-carousel .carousel-indicators .active {
            margin-bottom: 90px !important;
            opacity: 1 !important;
        }

        .hero-banner-carousel .carousel-indicators .active::before {
            background-color: #f3b21a !important;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target]:last-child {
            margin-bottom: 0 !important;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target]::after {
            content: "";
            position: absolute;
            top: calc(100% + 20px);
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 50px;
            background-color: transparent;
            z-index: -1;
            display: none;
        }

        /* CHỈ SỐ BANNER DỌC */
        .hero-banner-carousel .carousel-indicators {
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: auto;
            right: auto;
            transform: translate(-50%, -50%);
            flex-direction: column;
            margin: 0;
            width: 100%;
            max-width: 1320px;
            padding: 0 15px;
            z-index: 99; /* ĐẢM BẢO HIỆN TRÊN CÙNG */
            align-items: flex-end;
            pointer-events: none;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target] {
            width: 10px !important;
            height: 10px !important;
            background-color: transparent !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 0 15px 0 !important;
            opacity: 1 !important;
            text-indent: 0 !important;
            position: relative !important;
            pointer-events: auto;
        }

        .hero-banner-carousel .carousel-indicators [data-bs-target]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.4);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }

        .hero-banner-carousel .carousel-indicators .active {
            margin-bottom: 80px !important;
        }

        .hero-banner-carousel .carousel-indicators .active::before {
            background-color: #f3b21a;
        }

        /* ĐƯỜNG KẺ DỌC: TRẮNG -> VÀNG (CÓ HIỆU ỨNG CHẠY) */
        .hero-banner-carousel .carousel-indicators .active::after {
            content: "" !important;
            display: block !important;
            position: absolute !important;
            top: 25px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 2px !important;
            height: 40px !important;
            background-color: rgba(255, 255, 255, 0.3) !important; /* NỀN TRẮNG MỜ */
            background-image: linear-gradient(to bottom, #f3b21a, #f3b21a) !important; /* LỚP VÀNG */
            background-repeat: no-repeat !important;
            background-position: top center !important;
            background-size: 100% 0%;
            animation: indicatorFillV 5s linear forwards !important;
        }

        @keyframes indicatorFillV {
            0% { background-size: 100% 0%; }
            100% { background-size: 100% 100%; }
        }

        /* CHỈ SỐ NHÀ HÀNG NGANG */
        .diamond-indicators-horizontal {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            z-index: 99;
        }

        .diamond-indicators-horizontal [data-bs-target] {
            width: 10px !important;
            height: 10px !important;
            background-color: transparent !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 15px 0 0 !important;
            opacity: 1 !important;
            text-indent: 0 !important;
            position: relative !important;
        }

        .diamond-indicators-horizontal [data-bs-target]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(37, 9, 0, 0.2);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }

        .diamond-indicators-horizontal .active {
            margin-right: 80px !important;
        }

        .diamond-indicators-horizontal .active::before {
            background-color: #f3b21a;
        }

        .diamond-indicators-horizontal .active::after {
            content: "";
            display: block;
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background-color: #ffffff; /* NỀN TRẮNG */
            border: 1px solid #eeeeee;
            background-image: linear-gradient(to right, #f3b21a, #f3b21a);
            background-repeat: no-repeat;
            background-size: 0% 100%;
            animation: indicatorFillH 5s linear forwards;
        }

        @keyframes indicatorFillH {
            0% { background-size: 0% 100%; }
            100% { background-size: 100% 100%; }
        }

        .diamond-indicators-horizontal [data-bs-target]:last-child::after,
        .hero-banner-carousel .carousel-indicators [data-bs-target]:last-child::after {
            display: none !important;
        }

        .hero-banner-carousel .carousel-control-prev,
        .hero-banner-carousel .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 30px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .hero-banner-carousel:hover .carousel-control-prev,
        .hero-banner-carousel:hover .carousel-control-next {
            opacity: 1;
        }

        .hero-banner-carousel .carousel-control-prev:hover,
        .hero-banner-carousel .carousel-control-next:hover {
            background: rgba(243, 178, 26, 0.8);
        }

        .hero-banner-carousel .carousel-control-prev-icon,
        .hero-banner-carousel .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }

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

        .hero-eyebrow {
            margin: 0 0 16px;
            color: #f3b21a;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
        }

        .hero-title {
            margin: 0 0 24px;
            color: #ffffff;
            font-size: 46px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-copy {
            margin: 0 0 36px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.6;
            letter-spacing: 0;
            max-width: 540px;
        }

        .hero-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            min-height: 54px;
            padding: 12px 32px;
            border-radius: 50px;
            background: #f3b21a;
            color: #250900;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #f3b21a;
            text-transform: uppercase;
        }

        .hero-action:hover,
        .hero-action:focus {
            color: #250900;
            background: #ffc642;
            border-color: #ffc642;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(243, 178, 26, 0.3);
        }

        .about-section {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
            background:
                linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
                url("/image/bg_about.png");
            background-size: cover;
            background-position: center;
            scroll-margin-top: 80px;
        }

        .about-section .container {
            position: relative;
            z-index: 1;
        }

        .about-gallery {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .about-photo {
            width: 100%;
            aspect-ratio: 1.06;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s ease;
        }

        .about-photo:hover {
            transform: translateY(-5px);
        }

        .about-photo:nth-child(1), .about-photo:nth-child(4) { height: 100%; }
        .about-photo:nth-child(2) { margin-top: 40px; }
        .about-photo:nth-child(3) { margin-bottom: 40px; }

        .about-content {
            max-width: 690px;
            padding-left: 40px;
        }

        .section-heading {
            display: flex;
            align-items: end;
            margin-bottom: 30px;
            gap: 20px;
        }

        .section-heading h2 {
            margin: -6px;
            color: #f3b21a;
            font-size: 40px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: normal;
        }

        .section-heading span {
            flex-grow: 1;
            height: 1px;
            background: #f3b21a;
            display: block;
            position: relative;
        }

        .section-heading span::after {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            position: absolute;
            right: 0;
            top: -3px;
            border-radius: 50%;
            background: #f3b21a;
        }

        .about-text {
            margin: 0 0 32px;
            color: #333333;
            font-size: 18px;
            line-height: 1.7;
            letter-spacing: 0.2px;
        }

        .about-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 50px;
            background: #f3b21a;
            color: #250900;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .about-action:hover {
            background: #ffc642;
            color: #250900;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about-more, .expert-more, .breeds-more, .news-more {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            width: 100%;
        }

        .breeds-section {
            padding: 60px 0;
            background: #fdfdfd;
            color: #1c1c1c;
        }

        .breeds-intro { margin-bottom: 60px; }

        .breeds-kicker {
            margin: 0 0 12px;
            color: #f3b21a;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .breeds-title {
            margin: 0;
            color: #111111;
            font-size: 40px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .breeds-title span { color: #f3b21a; margin-left: 8px; }

        .breeds-description {
            margin: 0;
            color: #555555;
            font-size: 18px;
            line-height: 1.6;
            text-align: left;

        }

        .breed-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 24px;
        }

        .breed-card {
            padding: 12px;
            overflow: hidden;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .breed-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #f3b21a;
        }

        .breed-card img {
            border-radius: 12px 12px 0 0;
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .breed-card-body {
            display: flex;
            flex-grow: 1;
            flex-direction: column;
            align-items: center;
            padding: 24px;
            text-align: center;
        }

        .breed-card h3 {
            margin: 0;
            color: #111111;
            font-size: 22px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .breed-card:hover h3 { color: #f3b21a; }

        .breed-card p {
            margin: 12px 0 20px;
            color: #666666;
            font-size: 14px;
            line-height: 1.5;
        }

        .breed-link {
            margin-top: auto;
            color: #111111;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 10px 20px;
            border: 1px solid #eeeeee;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .breed-card:hover .breed-link {
            background: #f3b21a;
            color: #250900;
            border-color: #f3b21a;
        }

        .expert-section { padding: 0 0 80px; background: #ffffff; }

        .expert-title {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            gap: 20px;
        }

        .expert-title h2 {
            margin: 0;
            color: #f3b21a;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            white-space: normal;
        }

        .expert-title span {
            flex-grow: 1;
            height: 1px;
            background: #f3b21a;
            position: relative;
            display: block;
        }

        .expert-title span::after {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            position: absolute;
            right: 0;
            top: -3px;
            border-radius: 50%;
            background: #f3b21a;
        }

        .expert-lead {
            margin: 0 0 16px;
            color: #111111;
            font-size: 22px;
            font-weight: 700;
        }

        .expert-text {
            margin: 0 0 32px;
            color: #333333;
            font-size: 18px;
            line-height: 1.7;
        }

        .expert-gallery {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .expert-gallery img {
            width: 100%;
            aspect-ratio: 1.06;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
        }

        .expert-gallery img:hover { transform: translateY(-5px); }
        .expert-gallery img:nth-child(1), .expert-gallery img:nth-child(4) { height: 100%; }
        .expert-gallery img:nth-child(2) { margin-top: 40px; }
        .expert-gallery img:nth-child(3) { margin-bottom: 40px; }

        .restaurant-section { padding: 0 0 80px; background: #ffffff; }

        .restaurant-heading {
            display: flex;
            align-items: end;
            margin-bottom: 30px;
            gap: 20px;
        }

        .restaurant-heading h2 {
            margin: -8px;
            color: #f3b21a;
            font-size: 40px;
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            white-space: normal;
        }

        .restaurant-heading span {
            flex-grow: 1;
            height: 1px;
            background: #f3b21a;
            position: relative;
            display: block;
        }

        .restaurant-heading span::after {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            position: absolute;
            right: 0;
            top: -3px;
            border-radius: 50%;
            background: #f3b21a;
        }

        .restaurant-copy {
            max-width: 850px;
            margin: 0 0 50px;
            color: #333333;
            font-size: 18px;
            line-height: 1.7;
        }

        .restaurant-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .restaurant-item {
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .restaurant-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(243, 178, 26, 0.2);
        }

        .restaurant-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .restaurant-item:hover img { transform: scale(1.1); }

        .testimonial-section {
            padding: 80px 0;
            color: #ffffff;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/image/bg_feedback.png");
            background-size: cover;
            background-position: center;
        }

        .testimonial-heading { text-align: center; }

        .testimonial-heading h2 {
            margin: 0;
            color: #f3b21a;
            font-size: 40px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .testimonial-sub {
            text-align: center;
            margin: 10px 0 50px;
            color: #ffffff;
            font-size: 22px;
            line-height: 1.2;
        }

        .testimonial-slide {
            display: none;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
        }

        .testimonial-slide.is-active { display: grid; }

        .testimonial-card {
            position: relative;
            padding: 20px 30px;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            margin: 2px 0 0;
            color: #f3b21a;
            font-size: 18px;
            font-weight: 700;
        }

        .testimonial-text {
            margin: 15px 0 0;
            color: #ffffff;
            font-size: 18px;
            line-height: 1.4;
        }

        .testimonial-quote {
            position: absolute;
            top: 5px;
            right: 15px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 60px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.is-active { background: #f3b21a; transform: scale(1.2); }

        .news-section { padding: 80px 0; background: #fcfcfc; color: #111111; }

        .news-heading {
            display: flex;
            align-items: end;
            margin-bottom: 20px;
            gap: 20px;
        }

        .news-heading .news-title {
            margin: -8px;
            color: #111111;
            font-size: 40px;
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
        }

        .news-heading .news-title span { color: #f3b21a; margin-left: 8px; }

        .news-heading .heading-line {
            flex-grow: 1;
            height: 1px;
            background: #f3b21a;
            position: relative;
            display: block;
        }

        .news-heading .heading-line::after {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            position: absolute;
            right: 0;
            top: -3px;
            border-radius: 50%;
            background: #f3b21a;
        }

        .news-intro { margin-bottom: 60px; }

        .news-kicker {
            margin: 0 0 12px;
            color: #f3b21a;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .news-description {
            margin: 0;
            color: #555555;
            font-size: 18px;
            line-height: 1.7;
            text-align: left;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 24px;
        }

        .news-card {
            padding: 0;
            overflow: hidden;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #f3b21a;
        }

        .news-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .news-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-card h3 {
            margin: 0 0 12px;
            color: #111111;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card:hover h3 { color: #f3b21a; }

        .news-card p {
            margin: 0 0 20px;
            color: #666666;
            font-size: 14px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #999999;
            font-size: 13px;
        }

        .news-meta a {
            color: #f3b21a;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
        }

        .news-more {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        @media (max-width: 991.98px) {
            .hero-banner { padding: 80px 0; height: auto; min-height: 500px; }
            .hero-title { font-size: 36px; }
            .about-gallery, .expert-gallery { gap: 8px; }
            .about-photo:nth-child(2), .expert-gallery img:nth-child(2) { margin-top: 0; }
            .about-photo:nth-child(3), .expert-gallery img:nth-child(3) { margin-bottom: 0; }
            .about-content { padding-left: 0; padding-top: 30px; }
            .breed-grid, .news-grid, .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonial-slide { grid-template-columns: 1fr; }
        }

        @media (max-width: 575.98px) {
            .hero-title { font-size: 28px; }
            .breed-grid, .news-grid, .restaurant-grid { grid-template-columns: 1fr; }
            .section-heading h2, .expert-title h2, .restaurant-heading h2, .news-heading .news-title { font-size: 27px; }
        }

        /* Restaurant Carousel Indicators (Horizontal) */
        .diamond-indicators-horizontal {
            position: relative;
            bottom: auto;
            margin: 40px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            z-index: 15;
            pointer-events: none;
        }

        .diamond-indicators-horizontal [data-bs-target] {
            width: 10px;
            height: 10px;
            background-color: transparent;
            border: none;
            padding: 0;
            margin: 0 15px 0 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: auto;
            position: relative;
        }

        .diamond-indicators-horizontal [data-bs-target]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(37, 9, 0, 0.2);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }

        .diamond-indicators-horizontal .active {
            margin-right: 90px;
        }

        .diamond-indicators-horizontal .active::before {
            background-color: #f3b21a;
        }

        .diamond-indicators-horizontal [data-bs-target]:last-child {
            margin-right: 0;
        }

        .diamond-indicators-horizontal [data-bs-target]::after {
            content: "";
            position: absolute;
            left: calc(100% + 20px);
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 2px;
            background: transparent;
            z-index: -1;
        }

        .diamond-indicators-horizontal [data-bs-target]:last-child::after {
            display: none;
        }

        .diamond-indicators-horizontal .active::after {
            background-color: rgba(37, 9, 0, 0.1) !important;
            background-image: linear-gradient(to right, #f3b21a 0%, #f3b21a 100%) !important;
            background-repeat: no-repeat !important;
            background-size: 0% 100%;
            animation: indicatorProgressHorizontal 5s linear forwards;
        }

        @keyframes indicatorProgressHorizontal {
            from { background-size: 0% 100%; }
            to { background-size: 100% 100%; }
        }

