.top-static-header{
    background: linear-gradient(0deg, #C5202E 0%, #87131C 100%);
    min-height: 116px;
    max-height: 116px;
    color: white;
    align-items: center;
    display: flex;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.pt-11vh{
    padding-top: 116px;
}

.pt-10vh{
    padding-top: 10vh;
}

/* mobile view cart page */
@media (max-width: 992px) {
  .pt-11vh {
    padding-top: 69px;
  }
}

/* Anchor to full header width */
#top {
    position: relative;
}

.header-title{
    color: white;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
}

.header-logo{
    
    align-content: center;
}

.mega-menu {
    position: static;
}

.mega-dropdown-full {
    position: fixed;
    top: 116px;
    left: 0;
    width: 100vw;
    background: #fffdf3;
    padding: 40px 0;
    z-index: 999;
    border-bottom: solid 1px red;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0s linear 0.25s;
}

.mega-menu:hover > .mega-dropdown-full {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition-delay: 0s;
}

.mega-dropdown-full.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition-delay: 0s;
}

.sub-title-col h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.sub-title-col a {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.sub-title-col a:hover {
    color: #b01625;
}

.mega-toggle svg {
    transition: transform 0.25s ease;
}

.mega-toggle svg.rotate {
    transform: rotate(180deg);
}

/* mobile view mega menu */
@media (max-width: 991px) {
    .top-static-header {
        height: 69px;
        min-height: 69px;
        max-height: 69px;
        padding: 0;
    }

    /* Left: hamburger + search */
    .top-static-header > .d-lg-none {
        flex: 0 0 auto;
        width: 25%;
        display: flex!important;
        align-items: center;
        gap: 16px;
        padding-left: 16px;
    }

    /* Center: logo */
    .top-static-header > .col-lg-10 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto !important;
        max-width: unset !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        pointer-events: none;
    }

    .top-static-header > .col-lg-10 a {
        pointer-events: all;
    }

    .top-static-header > .col-lg-10 ul {
        display: none !important;
    }

    /* Right: cart + account */
    .top-static-header > .col-1 {
        flex: 0 0 auto !important;
        width: 25% !important;
        display: flex !important;
        align-items: center;
        gap: 16px;
        padding-right: 16px;
        margin-left: auto;
    }

    /* Fix inner col widths inside right col */
    .top-static-header > .col-1 > .col-6 {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 0;
    }

    /* Reduce logo size on mobile */
    .header-logo img,
    #logo img {
        max-height: 40px;
        width: auto;
    }

    .top-static-header > .col-1.d-none {
        display: none !important;
    }

}

.mobile-nav {
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    height: calc(100% - 69px);
    background: #faf8f3;
    z-index: 9000;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

/* Each panel fills the nav */
.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* Sub panels start off-screen to the right */
.mobile-nav-sub {
    transform: translateX(100%);
}

.mobile-nav-sub.active {
    transform: translateX(0);
}

/* Push main panel left when sub is active */
.mobile-nav-panel.pushed {
    transform: translateX(-100%);
}

/* Main nav list */
.mobile-nav-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e8e3d8;
    font-size: 16px;
    color: #2b2b2b;
    cursor: pointer;
}

.mobile-nav-item span {
    font-size: 16px;
    color: #2b2b2b;
}

.mobile-nav-item i {
    color: #999;
    font-size: 14px;
}

.mobile-nav-item.mobile-nav-link {
    border-bottom: none;
    margin-top: 8px;
}

.mobile-nav-item.mobile-nav-link a {
    color: #2b2b2b;
    text-decoration: underline;
    font-size: 16px;
}

/* Back button */
.mobile-nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    cursor: pointer;
    border-bottom: 1px solid #e8e3d8;
}

.mobile-nav-back i {
    font-size: 14px;
}

/* Sub panel content */
.mobile-nav-sub-content {
    padding: 8px 20px;
}

.mobile-nav-section {
    margin-bottom: 24px;
}

.mobile-nav-section-split {
    display: flex;
    margin-bottom: 24px;
}

.mobile-nav-section-split img{
    width: 100px;
    height: 100px;
}

.mobile-nav-section-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #303437;
    margin: 16px 0 10px;
}

.mobile-nav-sub-link {
    display: block;
    padding: 10px 0;
    color: #6C7072;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid #f0ebe0;
}

.mobile-nav-sub-link:last-child {
    border-bottom: none;
}

body.menu-open {
    overflow: hidden;
    touch-action: none; /* prevents iOS background bounce */
}

/* Close button replaces hamburger when open */
.btn-mobile-menu .icon-hamburger,
.btn-mobile-menu .icon-close { 
    display: block; 
}

.btn-mobile-menu .icon-close { 
    display: none; 
}

.mobile-nav.open ~ * .btn-mobile-menu .icon-hamburger { 
    display: none; 
}

.mobile-nav.open ~ * .btn-mobile-menu .icon-close { 
    display: block; 
}

/*register drop down*/
.user-dropdown {
    width: 260px;
    border-radius: 8px;
    padding: 0;
}

.user-dropdown .dropdown-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.user-dropdown .btn-register {
    background-color: #d71920;
    color: #fff;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
}

.user-dropdown .btn-register:hover {
    background-color: #b9151b;
    color: #fff;
}

.user-dropdown .btn-login {
    background-color: #fff;
    color: #d71920;
    border: 1px solid #d71920;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
}

.user-dropdown .btn-login:hover {
    background-color: #d71920;
    color: #fff;
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}
/*register drop down END*/

/*login modal*/
.login-modal {
    border-radius: 12px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.iti {
    display: block;
    width: 100%;
}

.iti input {
    width: 100%;
}

.tv-chart {
    width: 100%;
    height: 600px;
    min-height: 500px;
    position: relative; 
}

/* CONTENT TRUST START */
.trust-features {
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.trust-text h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #222;
}

.trust-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
}

@media (max-width: 767px) {
    .trust-item {
        margin-bottom: 20px;
    }
}

.container-trust{
    padding: 120px 0;
}

@media (max-width: 767px) {
    .container-trust {
        padding: 60px 8px;
    }

    .trust-features {
        padding: 0px 8px;
    }
}

/* CONTENT TRUST END */

/* CONTENT ADVERTISE START */
.advertise-container{
    min-height: 500px; 
    overflow: hidden;
    margin-bottom: 100px;
}

.advertise-container img{
    position: absolute;
    top: 0; 
    left: 0; 
    object-fit: 
    cover; 
    z-index: 0;
}


.advertise-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2b2b2b;
}

.advertise-desc {
    margin-top: 22px;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    color: #7a7a7a;
}

.advertise-stats {
    display: flex;
    gap: 52px;
    margin-top: 36px;
}

.advertise-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c9a24d;
}

.advertise-stat span {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #8a8a8a;
}

.advertise-actions {
    margin-top: 36px;
    display: flex;
    gap: 18px;
}

@media (max-width: 768px) {
    .container-fluid{
        padding: 0;
    }

    .advertise-container {
        padding: 16px 8px;
        margin: 0px;
    }
    /* Hide original absolute img on mobile */
    .advertise-container > img {
        display: none !important;
    }

    .advertise-container .col-lg-1 {
        display: none;
    }

    .advertise-container .col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0;
    }

    /* Wrapper covers full width, image as background on right */
    .advertise-title-wrap {
        position: relative;
        width: 100%;
        min-height: 180px;
        background-image: var(--bg-image);
        background-size: 100%;          /* image takes right 55% */
        background-repeat: no-repeat;
        background-position: right center;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Title sits on left, image bleeds right */
    .advertise-title {
        font-size: 22px;
        line-height: 1.3;
        font-weight: 700;
        width: 55%;                    /* text occupies left 55% */
        position: relative;
        z-index: 2;
        margin: 0;
        padding-right: 8px;
    }

    .advertise-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .advertise-stats {
        flex-direction: row !important;
        gap: 0;
        margin-top: 20px;
        justify-content: space-between;
    }

    .advertise-stat strong {
        font-size: 18px;
    }

    .advertise-stat span {
        font-size: 10px;
    }

    .advertise-actions {
        margin-top: 20px;
        gap: 12px;
    }

    .advertise-actions .btn {
        flex: 1;
        font-size: 14px;
        padding: 10px;
    }
}

.darkgold-color{
    color: #b8860b;
}

/* CONTENT ADVERTISE END */

.site-footer {
  background: #f8f8f8;
  color: #333;
  font-size: 12px;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
    margin-bottom: 2px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.contact-info li{
    display: flex;
    align-items: center;
}

.trading-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 5px;
}

.trading-hours li .time {
    text-align: right;
    font-weight: 500; /* optional, same as before */
}

.contact-info li i{
    margin-right: 8px; 
    color: #333;
    min-width: 20px;
}

.trading-hours li span {
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
}

.footer-links li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-col > div:first-child {
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-col {
        min-width: unset;
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-info li {
        align-items: flex-start;  /* icon stays at top when text wraps */
    }

    .contact-info{
        padding: 0 !important;
    }
}

/*owl carousel*/
.featured-section {
    text-align: center;
    padding: 100px 0 120px 0;
}

.featured-title{
    padding-bottom: 50px;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.featured-carousel {
    position: relative; /* important for nav positioning */
}

.featured-carousel .item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.3s ease;

}

.carousel-product-card {        
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: visible;
    transition: all 0.3s ease;
    width: 100%;
    background-blend-mode: screen;
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.8) 0%, rgba(253, 230, 138, 0.8) 100%);
    background: linear-gradient(180deg, rgba(253, 230, 138, 0) 78.2%, rgba(253, 230, 138, 0.2) 100%);

}

.carousel-product-card .img-container{
    width: 100%;
    aspect-ratio: 510 / 294;
}

.carousel-product-card img {
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.featured-home-product-title {
    width: 100%;
    padding: 10px 137px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #303437;
}

/* Center item bigger */
.owl-item.center .carousel-product-card {
    transform: scale(1);
    transition: all 0.5s ease;
}

.owl-item:not(.center) .carousel-product-card {
    opacity: 0.5;
    transition: all 0.5s ease;
    transform: scale(0.7);
}

.owl-stage-outer {
    padding: 40px 0;
}

.badge-container{
    text-align: right;
    padding: 20px 20px 0 0;
}

/* Badge */
.badge {
    background: #FFF5F7CC;
    color: #87131C;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0px 1px 3px 0px #0000001A;
    font-size: 14px;
    line-height: 20px;
    z-index: 9;
    font-weight: 400;
    min-width: 95px;
    min-height: 29px;
}

.owl-item.center img {
    animation: floatUp 1s ease;
}

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

.featured-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* allow clicks only on buttons */
    z-index: 8;
}

.featured-carousel .owl-nav .owl-prev,
.featured-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    font-size: 32px;
    text-align: center;
    color: #333;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.featured-carousel .owl-nav .owl-prev { left: 10px; }
.featured-carousel .owl-nav .owl-next { right: 10px; }

.featured-carousel .owl-nav .owl-prev::before,
.featured-carousel .owl-nav .owl-next::before {
    content: none !important;
}

.featured-carousel .owl-nav .owl-prev {
    content: '‹';
    font-size: 32px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-carousel .owl-nav .owl-next {
    content: '›';
    font-size: 32px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .featured-section{
        padding: 100px 0px;
    }

    .owl-stage-outer {
        padding: 0; 
    }

}

/* dashboard */
.live-price-wrapper {
    background: linear-gradient(to bottom, #f4f4f4, #e6e1d6);
    padding: 40px 0;
    text-align: center;
}

.live-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #333;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    background: #f3f3f3;
    width: 450px;
    padding: 15px;
    border-radius: 4px;
}

.metal-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.gold .metal-title {
    color: #b8860b;
    border-bottom: 2px solid #caa437;
    padding-bottom: 10px;
}

.silver .metal-title {
    color: #666;
    border-bottom: 2px solid #bbb;
    padding-bottom: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.price-table th {
    font-weight: 500;
    font-size: 12px;
    color: #777;
    padding: 10px 0;
    text-align: right;
}

.price-table th:first-child {
    text-align: left;
}

.price-table td {
    padding: 5px 7px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.price-table td:first-child {
    text-align: left;
    color: #b8860b;
    font-weight: 400;
}

.silver .price-table td:first-child {
    color: #555;
}

.price-note {
    margin-top: 40px;
    font-size: 13px;
    color: #666;
}

.price-table tbody tr:nth-child(odd) {
    background-color: #f1f1f1;
}

.price-table tbody tr:nth-child(even) {
    background-color: #e5e5e5;
}

/* breadcrumb */
.simple-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 15px 0px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.simple-breadcrumb li {
    display: flex;
    align-items: center;
}

.simple-breadcrumb a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.simple-breadcrumb a:hover {
    text-decoration: underline;
}

.simple-breadcrumb .separator {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.simple-breadcrumb .separator i {
    font-size: 12px;
    line-height: 1;
}

.simple-breadcrumb .current {
    color: #222;
    font-weight: 400;
}

.container-bottom{
    margin-bottom: 100px;
}

/* ===== header search page (for mobile) ===== */
    #search-overlay {
        position: fixed;
        top: 116px; /* match your header height */
        left: 0;
        right: 0;
        background: #fff;
        z-index: 10;
        padding: 16px 24px;
        border-bottom: 1px solid #eee;
    }

    @media (max-width: 992px) {
      #search-overlay {
        position: fixed;
        top: 69px;
      }
    }

    .search-overlay__bar {
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 800px;
        margin: 0 auto;
        border: 1px solid #ddd;
        border-radius: 30px;
        padding: 10px 20px;
        background: #fff;
    }
    .gap-40px{
        display: grid;
        gap: 40px;
    }

    #search-overlay__input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 15px;
        color: #1a1714;
        background: transparent;
    }

    #search-overlay__close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #aaa;
        display: flex;
        align-items: center;
    }

    /* On mobile — make it full screen so results have room */
    @media (max-width: 767px) {
        #search-overlay.is-open {
            display: flex !important;
            flex-direction: column;
        }

        #search-overlay.has-results {
            bottom: 0;
            overflow: auto;
        }

        /* Results — scrollable middle section */
        #search-overlay__results {
            overflow-y: auto;
            padding: 4px 0;
            gap: 10px;
            display: grid;
        }

        /* Footer — pinned at bottom */
        #search-overlay__footer {
            flex-shrink: 0;      /* never shrink — always stays at bottom */
            padding: 12px 16px;
            background: #fff;
            border-top: 1px solid #eee;
        }

        .search-content__header{
            margin-top: 10px !important;
            align-items: center;
        }

        #search-overlay.has-results #search-overlay__results {
            margin-top: 30px; 
        }
    }

    /* ===== RESULT ITEMS ===== */
    .search-result-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        text-decoration: none;
        color: inherit;
        background: #fff;
        margin-bottom: 2px;
    }

    .search-result-item:hover {
        background: #f5f5f5;
    }

    .search-result-thumb {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
        background: #f0ede6;
    }

    .search-result-info {
        flex: 1;
        min-width: 0;
    }

    .search-result-name {
        font-size: 13px;
        font-weight: 500;
        color: #1a1714;
        line-height: 1.4;
        /* Allow 2 lines max */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .search-result-price {
        font-size: 13px;
        color: #C5202E;
        font-weight: 600;
        margin-top: 4px;
    }

    .search-result-end {
        text-align: center;
        padding: 20px 16px;
        color: #aaa;
        font-size: 13px;
    }

    /* ===== SEE ALL BUTTON ===== */
    .btn-see-all {
        width: 100%;
        background: #C5202E;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        letter-spacing: 0.3px;
    }

    .btn-see-all:hover {
        background: #a51825;
        color: #fff;
    }

    /* ===== DESKTOP — keep original bar style only ===== */
    @media (min-width: 768px) {
        #search-overlay__results,
        #search-overlay__footer {
            display: none !important;
        }
    }

/* ===== end search page ===== */

/**/
   .pgm-toast {
        position: fixed;
        bottom: 24px;        /* ← this was missing on desktop */
        left: 50%;
        right: auto;
        z-index: 9;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 260px;
        max-width: 360px;
        padding: 14px 16px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 6px 24px rgba(0,0,0,0.13);
        border-left: 4px solid #C5202E;
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        font-size: 0.9rem;
    }

    .pgm-toast--show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .pgm-toast--success .pgm-toast__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #C5202E;
        color: #fff;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .pgm-toast--error {
        border-left-color: #888;
    }

    .pgm-toast--error .pgm-toast__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #888;
        color: #fff;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .pgm-toast__msg {
        flex: 1;
        color: #222;
        line-height: 1.4;
    }

    .pgm-toast__close {
        background: none;
        border: none;
        color: #aaa;
        font-size: 0.85rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        flex-shrink: 0;
    }

    .pgm-toast__close:hover {
        color: #555;
    }

    .pgm-toast + .pgm-toast {
        bottom: calc(24px + 70px);
    }

    @media (max-width: 991px) {
        .pgm-toast {
            left: auto;
            right: 16px;
            bottom: 24px;
            transform: translateY(16px);
        }
        .pgm-toast--show {
            transform: translateY(0);
        }
        .pgm-toast + .pgm-toast {
            bottom: calc(24px + 70px);
        }
    }

