* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import a lighter display font for headings */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   HEADER
================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* Centering and spacing for header menu */
.nav-center { width: 520px; max-width: 60%; min-width: 300px; }
.nav-center .navbar-nav { gap: 40px; display:flex; align-items:center; }

/* Desktop dropdown styling */
.navbar .dropdown-menu {
    background: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 220px;
}
.navbar .dropdown-item {
    padding: 10px 18px;
    color: #222;
    transition: background .12s ease, color .12s ease;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(232,75,59,0.06);
    color: #e84b3b;
}
.navbar .dropdown-menu .dropdown-item + .dropdown-item { border-top: 1px solid rgba(0,0,0,0.04); }
.navbar .dropdown-menu .dropdown-item:first-child { border-top-left-radius: 6px; border-top-right-radius: 6px; }
.navbar .dropdown-menu .dropdown-item:last-child { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }

/* Offcanvas category item improvements (mobile) */
.offcanvas .list-group-item.ps-4 {
    padding-left: 24px !important;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
}
.offcanvas .list-group-item-action { color: #222; }
.offcanvas .list-group-item-action:hover { background: rgba(0,0,0,0.03); }

/* Replace default caret with a smaller symbol and hide bootstrap arrow */
.navbar .dropdown-toggle::after { display: none; }
.navbar .dropdown > .nav-link::after { content: '\25BE'; margin-left: 6px; font-size: .7em; opacity: .85; }

@media (max-width: 768px) {
    .nav-center { width: 360px; max-width: 70%; min-width: 220px; }
}

/* SEARCH */
.search-wrapper {
    position: relative;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f5d76e, #f39c12);
}

.search-input {
    width: 100%;
    height: 48px;
    border-radius: 30px;
    border: none;
    padding: 0 52px 0 16px;
    background: #1f2335;
    color: #fff;
    font-size: 15px;
}

.site-logo { height:48px; width:auto; margin-right:12px; border-radius:4px; display:inline-block; box-shadow:0 2px 8px rgba(0,0,0,0.28); border:2px solid rgba(255,255,255,0.12); }
/* refined header: brighter red -> mid red -> deep -> black with slate accent */
.site-header .navbar {
    /* left: dark bluish-gray -> right: bright red (subtle, not too shiny) */
    background-color: #2f3b44; /* fallback: dark bluish-gray */
    background: linear-gradient(90deg, #2f3b44 0%, #32444e 28%, #b24a41 68%, #e84b3b 100%);
    background-repeat: no-repeat;
    color: #ffffff;
    border-bottom: 2px solid rgba(255,255,255,0.04);
}
.site-header .navbar .navbar-brand .brand-text {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0,0,0,0.28);
}
.site-header .navbar .navbar-brand { gap:10px; }
.site-header .navbar .nav-link { color: rgba(255,255,255,0.94); font-weight:600; transition:color .12s ease, opacity .12s ease; }
.site-header .navbar .nav-link:hover { color: #fff; opacity:0.95; }
.site-header .navbar .nav-link.active { color: #ff9a95; }
/* improve click targets and readability */
.site-header .navbar .nav-link { font-size: 16px; }

/* search input contrast on dark header: subtle slate field */
.site-header .search-wrapper { background: transparent; }
.site-header .search-input {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(4px);
}
.site-header .search-input::placeholder { color: rgba(255,255,255,0.76); }
.site-header .search-btn { color: #ff9a95; }

.search-input:focus {
    outline: none;
}

/* KÍNH LÚP */
.search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: #e0c36b;
    cursor: pointer;
}

/* CHỮ TRƯỢT */
.search-slide {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    white-space: nowrap;
    animation: slideText 4s linear infinite;
}

/* ANIMATION GIỐNG PPT */
@keyframes slideText {
    0% {
        opacity: 0;
        transform: translate(-20px, -50%);
    }
    15% {
        opacity: 1;
        transform: translate(0, -50%);
    }
    70% {
        opacity: 1;
        transform: translate(0, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(20px, -50%);
    }
}

/* HIGHLIGHT */
.highlight {
    background: none;
    padding: 0;
    border-radius: 0;
    font-weight: 800;
    color: inherit;
}

/* Use a thinner Poppins weight for the highlighted company name in the intro title */
.intro-section .intro-title .highlight {
    font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: inherit;
}

/* ===============================
   BANNER
================================ */
/* Banner container: full-width, responsive height */
#mainBanner {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner image: cover + zoom thu nhỏ từ 4 góc */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    zoom: 0.75;
}

/* Responsive heights - giảm xuống do đã zoom */
@media (min-width: 768px) {
    #mainBanner { height: 560px; }
}
@media (min-width: 992px) {
    #mainBanner { height: 560px; }
}
@media (min-width: 1200px) {
    #mainBanner { height: 860px; }
}
@media (min-width: 1400px) {
    #mainBanner { height: 860px; }
}

/* Carousel controls */
.custom-control {
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.75);
    border-radius: 4px;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Decorative separator under banner — thin 3-color horizontal bar (gray / red / black)
   Centered in its gap so spacing above/below is equal.
*/
.banner-gap {
    padding-top: 20px; /* gap above */
    padding-bottom: 20px; /* gap below */
    display: flex;
    align-items: center; /* center separator vertically in the gap */
    justify-content: stretch;
}

.banner-sep {
    height: 12px; /* total height (top + middle + bottom) */
    margin: 0;
    position: relative;
    pointer-events: none;
    display: block;
    width: 100%;
    background: #e84b3b; /* middle stripe (red) */
}

.banner-sep::before,
.banner-sep::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px; /* exact top/bottom stripe thickness */
}
.banner-sep::before { top: 0; background: #32444e; }
.banner-sep::after { bottom: 0; background: #0d0e12; }

/* Make stripes a bit thinner on small screens */
@media (max-width: 576px) {
    .banner-gap { padding-top: 12px; padding-bottom: 12px; }
    .banner-sep { height: 10px; }
    .banner-sep::before, .banner-sep::after { height: 2px; }
}

/* banner prev/next buttons using same visual style as cert-btn */
.banner-btn { position: absolute; top: 50%; transform: translateY(-50%); width:56px; height:56px; border-radius:50%; border:1px solid #ddd; background:#fff; display:flex; align-items:center; justify-content:center; font-size:28px; cursor:pointer; z-index:1000; box-shadow:0 10px 26px rgba(0,0,0,0.14); }
.banner-btn:active { transform: translateY(-50%) scale(.98); }

/* explicitly position prev/next */
#bannerPrev { left: 18px; }
#bannerNext { right: 18px; }

/* ensure carousel images don't overflow when height constrained */
.carousel-inner { display:block; }
.carousel-item img { display:block; width:100%; }

/* Banner dots (carousel indicators) */
#mainBanner .carousel-indicators {
    bottom: 14px;
    margin-bottom: 0;
    gap: 6px;
}
#mainBanner .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.7);
    border: 0;
    opacity: 1;
}
#mainBanner .carousel-indicators .active {
    background-color: #e84b3b;
}

/* ===============================
   SECTION COMMON
================================ */
section h2,
section h3,
section h4 {
    font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    color: #222;
}

section {
    padding: 10px 0;
}

/* ===============================
   GIỚI THIỆU
================================ */
section p {
    font-size: 16px;
    color: #555;
}

/* ===============================
   DANH MỤC SẢN PHẨM
================================ */
.card {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Thumbnail wrapper to display product/category images like the attachment */
.thumb-wrap {
    height: 380px; /* reduced height so image fits more tightly */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 4px; /* reduced padding to show larger image */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.thumb-img {
    /* larger footprint: fill available width, keep aspect ratio, and respect small internal padding */
    max-width: calc(100% - 12px);
    max-height: calc(100% - 12px);
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    background: #fff;
    display: block;
}

/* Responsive thumb heights: keep horizontal fit but reduce vertical height on smaller screens */
@media (max-width: 1200px) {
    .thumb-wrap { height: 320px; }
}
@media (max-width: 768px) {
    .thumb-wrap { height: 260px; padding: 6px; }
}
@media (max-width: 420px) {
    .thumb-wrap { height: 200px; padding: 6px; }
}

/* Make featured section visuals match the category cards */
.featured-section .card {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}
.featured-section .card:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.featured-section .thumb-wrap { height: 380px; }
.featured-section .thumb-img { max-width: calc(100% - 12px); max-height: calc(100% - 12px); width:100%; height:auto; object-fit:contain; }



/* Offcanvas mobile menu styling to match supplied mock */
.offcanvas {
    --bs-offcanvas-width: 320px;
}
.offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 18px;
}
.offcanvas .offcanvas-title {
    margin: 0 auto;
    font-weight: 600;
}
.offcanvas .list-group {
    margin-top: 8px;
}
.offcanvas .list-group-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 20px;
    font-size: 16px;
}
.offcanvas .list-group-item:last-child { border-bottom: none; }

/* make close button and items clearly tappable */
.offcanvas .btn-close { margin-left: 0; }

@media (max-width: 360px) {
    .offcanvas { --bs-offcanvas-width: 280px; }
}

/* Show dropdown on hover for desktop to match expected behavior */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .navbar-nav .dropdown > .dropdown-menu {
        margin-top: 0.25rem;
    }
}
/* utility and category styles */
.card-link { display:block; color:inherit; }
.card .intro-cta { margin-top:10px; }

/* category detail button (red background) */
.btn-detail, .btn.btn-detail {
    display: inline-block;
    margin: 0; /* sit immediately after contact line */
    background: #c0392b; /* stronger red */
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform .12s ease, box-shadow .18s ease, filter .12s ease, background-color .12s ease;
    border: none;
    text-decoration: none;
}
.btn-detail:hover, .btn.btn-detail:hover {
    background:#e04b3a; /* slightly brighter on hover */
    color:#fff;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    filter: brightness(1.06);
}
.btn.btn-detail:focus { outline: none; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

/* small contact line under category name */
.cat-contact { margin: 0 0 4px; color:#666; font-size:14px; }
/* phone numbers inside contact line */
.cat-phone { color: #e84b3b; font-weight:700; display:inline-block; }

/* blinking color animation for phone number: black -> red -> blue -> yellow */
@keyframes blinkColors {
    0% { color: #000; }
    25% { color: #e84b3b; }
    50% { color: #007bff; }
    75% { color: #f1c40f; }
    100% { color: #000; }
}
.cat-phone { animation: blinkColors 2s linear infinite; }

.card-body h5 {
    font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ===============================
   SẢN PHẨM NỔI BẬT
================================ */
.card h6 {
    font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.card .text-danger {
    font-size: 15px;
}

/* CHỨNG NHẬN: thumbnails và chỉ báo (dots) */
.cert-section .cert-slider { display:flex; align-items:center; gap:14px; width:100%; margin:0 auto; }
.cert-section .cert-view { overflow:hidden; width:100%; }
.cert-section .cert-track { display:flex; flex-wrap:nowrap; transition:transform .35s ease; will-change:transform; }
.cert-section .cert-item { box-sizing:border-box; padding:6px 10px; flex:0 0 calc(100% / 3); display:flex; align-items:center; justify-content:center; }
/* Card style for thumbnails: larger, centered, with padding so portrait docs show nicely */
.cert-section .cert-thumb { width:100%; max-width:720px; height:320px; object-fit:contain; object-position:center center; background-color:#fff; border-radius:12px; display:block; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease; padding:18px; box-shadow:0 18px 36px rgba(0,0,0,0.08); }
.cert-section .cert-thumb:hover { transform:translateY(-6px); box-shadow:0 12px 28px rgba(0,0,0,.14); }
.cert-section .cert-placeholder { height:160px; display:flex; align-items:center; justify-content:center; background:#f5f5f5; border-radius:8px; color:#666; font-size:14px; padding:12px; text-align:center; }

.cert-section .cert-btn { width:48px; height:48px; border-radius:50%; border:1px solid #ddd; background:#fff; display:flex; align-items:center; justify-content:center; font-size:22px; cursor:pointer; }
.cert-section .cert-btn:disabled { opacity:.35; cursor:default; }

.cert-section .cert-dots { margin-top:14px; display:flex; justify-content:center; gap:8px; }
.cert-section .cert-dots button { width:11px; height:11px; border-radius:50%; border:none; background:#cfcfcf; cursor:pointer; padding:0; }
.cert-section .cert-dots button.active { background:#2c2c2c; }

.zoom-modal { position:fixed; inset:0; top:0; left:0; width:100vw; height:100vh; background:rgba(0,0,0,.88); display:flex; align-items:center; justify-content:center; z-index:2147483647; cursor:zoom-out; opacity:0; pointer-events:none; transition:opacity .18s ease; }
.zoom-modal.visible { opacity:1; pointer-events:auto; }
.zoom-modal .zoom-img { /* sizing controlled by JS: remove max constraints */ border-radius:6px; box-shadow:0 12px 40px rgba(0,0,0,.6); transform-origin:center center; transition:width .12s ease, height .12s ease, opacity .18s ease; display:block; }

/* wrapper để chứa ảnh và cho phép pan */
.zoom-wrap { display:flex; align-items:center; justify-content:center; overflow:hidden; max-width:90vw; max-height:90vh; }

/* đảm bảo Edge/IE/Touch không mặc định xử lý cử chỉ, cho phép JS điều khiển pan/zoom */
.zoom-wrap {
    touch-action: none;
}
.zoom-wrap, .zoom-modal .zoom-img {
    touch-action: none;
    -ms-touch-action: none;
    will-change: transform, width, height;
}

/* NÚT ĐIỀU KHIỂN TRONG MODAL */
.zoom-modal .zoom-prev,
.zoom-modal {
    touch-action: none;
    -ms-touch-action: none;
}
.zoom-modal .zoom-next {
    position:fixed; top:50%; transform:translateY(-50%); z-index:100000;
    width:48px; height:48px; border-radius:50%; border:none; background:rgba(255,255,255,.95);
    display:flex; align-items:center; justify-content:center; font-size:26px; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.zoom-modal .zoom-prev { left:18px; }
.zoom-modal .zoom-next { right:18px; }
.zoom-modal .zoom-close {
    position:fixed; top:14px; right:14px; z-index:100000;
    width:40px; height:40px; border-radius:50%; border:none; background:rgba(255,255,255,.95);
    display:flex; align-items:center; justify-content:center; font-size:18px; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.zoom-modal .zoom-prev:disabled,
.zoom-modal .zoom-next:disabled { opacity:.45; cursor:default; }

.zoom-modal .zoom-in, .zoom-modal .zoom-out {
    position:fixed; right:74px; top:18px; z-index:100000; width:40px; height:40px; border-radius:50%; border:none; background:rgba(255,255,255,.95);
    display:flex; align-items:center; justify-content:center; font-size:20px; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.zoom-modal .zoom-out { right:118px; }

/* NGĂN CUỘN NỀN KHI MODAL MỞ */
body.zoom-open { overflow: hidden; }

/* PHẢN HỒI (Responsive) */
@media (max-width: 992px) {
    .cert-section .cert-item { flex:0 0 calc(100% / 2); }
    .cert-section .cert-thumb { height:260px; max-width:540px; padding:14px; }
}
@media (max-width: 576px) {
    .cert-section .cert-item { flex:0 0 100%; }
    .cert-section .cert-thumb { height:200px; max-width:420px; padding:12px; }
    .cert-section .cert-btn { width:40px; height:40px; font-size:18px; }
}


/* ===============================
   FOOTER
================================ */
/* Footer layout */
.site-footer { background: linear-gradient(90deg, #2f3b44 0%, #32444e 28%, #b24a41 68%, #e84b3b 100%); color: #fff; }
.site-footer .footer-top { padding: 48px 0 22px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.site-f ooter h5 { color: #f5f5f5; font-weight:700; margin-bottom:12px; }
.footer-contact .company-name { color: #e84b3b; font-weight:800; margin-bottom:8px; }
.footer-contact p { color: #e6e6e6; margin-bottom:6px; }
.footer-contact a { color: #e6e6e6; }
.footer-map .map-tabs { display:flex; gap:8px; }
/* active tab: light gray background so text remains visible */
.footer-map .map-tab.active { background:#efefef; color:#222 !important; }
.footer-map .map-wrap { background: #fff; padding:6px; border-radius:6px; }

/* back-to-top button */
.back-to-top { position: fixed; right: 22px; bottom: 28px; width:48px; height:48px; border-radius:50%; background:#1f2335; color:#fff; border:none; display:flex; align-items:center; justify-content:center; font-size:20px; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.28); opacity:0; transform:translateY(8px); transition:opacity .18s ease, transform .18s ease; z-index:1200; }
.back-to-top.visible { opacity:1; transform:translateY(0); }
.site-footer .footer-bottom { background: linear-gradient(90deg, #2f3b44 0%, #32444e 28%, #b24a41 68%, #e84b3b 100%); color: #bfbfbf; }

footer p { margin: 0; }

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .search-box {
        width: 180px;
    }

    .banner-img {
        height: 260px;
    }

    header nav {
        gap: 16px;
    }
}

/* ===============================
   INTRO (Two-column layout like mock)
================================= */
.intro-section .intro-img-wrap { position: relative; max-width: 720px; margin: 0 auto; }
.intro-section .intro-img { display:block; width:100%; border-radius:8px; box-shadow:0 22px 40px rgba(0,0,0,0.18); position:relative; z-index:2; }
.intro-section .intro-title { font-size: clamp(18px, 5vw, 36px); font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif; font-weight:700; color:#111; margin-bottom:14px; text-transform:uppercase; line-height:1.2; }
.intro-section .intro-lead { color:#666; font-size:16px; margin-bottom:12px; }
.intro-section .intro-cta { display:inline-block; margin-top:18px; background:#d4b05a; color:#fff; padding:12px 26px; border-radius:6px; font-weight:700; box-shadow:0 8px 20px rgba(0,0,0,0.12); transition:transform .12s ease, box-shadow .12s ease; }
.intro-section .intro-cta:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(0,0,0,0.16); }

@media (max-width: 991px) {
    .intro-section .intro-title { font-size: clamp(16px, 4.5vw, 34px); }
}

@media (max-width: 576px) {
    .intro-section .intro-title { font-size: clamp(16px, 4vw, 22px); text-align:center; line-height:1.3; }
    .intro-section .intro-img-wrap { max-width:420px; }
    .intro-section .intro-cta { display:block; width:92%; text-align:center; margin-left:auto; margin-right:auto; }
}

/* Remove bold styling for the specific intro bullet points */
.intro-section .list-unstyled li strong {
    font-weight: 400;
    font-weight: normal;
}

/* ===============================
   SECTION SEPARATOR
================================ */
.section-separator {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator-line {
    width: 80%;
    max-width: 600px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4b05a 20%, #d4b05a 80%, transparent);
    position: relative;
}

.separator-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #d4b05a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #d4b05a;
}

@media (max-width: 768px) {
    .section-separator {
        padding: 30px 0;
    }
    
    .separator-line {
        width: 90%;
        height: 2px;
    }
    
    .separator-line::before {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #d4b05a;
    }
}