:root {
    --burgundy: #4A1D3F;
    --burgundy-dark: #351028;
    --burgundy-light: #6B2A5A;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE0;
    --gold: #C5A059;
    --gold-hover: #B08947;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
    --gray: #888888;
    --text-primary: #2C1F26;
    --text-secondary: #6B5B63;
    --text-muted: #9B8B92;
    --border-light: #E8E0D5;
    --success: #2D7A4F;
    --error: #B84545;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(74, 29, 63, 0.06);
    --shadow-md: 0 4px 20px rgba(74, 29, 63, 0.1);
    --shadow-lg: 0 10px 40px rgba(74, 29, 63, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    line-height: 1;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--gold {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.35s ease;
    background: transparent;
}

.header--scrolled {
    background: rgba(250, 247, 242, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header--solid {
    background: rgba(250, 247, 242, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header--solid .header__nav-link {
    color: var(--charcoal);
}

.header--solid .header__nav-link:hover {
    color: var(--burgundy);
}

.header--solid .header__nav-link--active {
    color: var(--burgundy);
}

.header--solid .header__nav-link--active::after {
    width: 100%;
}

.header--solid .header__cart {
    color: var(--charcoal);
}

.header--solid .header__cart:hover {
    color: var(--burgundy);
}

.header--solid .header__menu-toggle span {
    background: var(--charcoal);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: height 0.35s ease;
}

.header--scrolled .header__inner {
    height: 60px;
}

.header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.header__logo-img {
    height: 55px;
    width: auto;
    display: block;
    transition: height 0.35s ease;
}

.header--scrolled .header__logo-img {
    height: 45px;
}

.header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.header__nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link:hover {
    color: var(--white);
}

.header--scrolled .header__nav-link {
    color: var(--charcoal);
}

.header--scrolled .header__nav-link:hover {
    color: var(--burgundy);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header__cart {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.header__cart:hover {
    color: var(--white);
}

.header--scrolled .header__cart {
    color: var(--charcoal);
}

.header--scrolled .header__cart:hover {
    color: var(--burgundy);
}

.header__cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.header__menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

.header--scrolled .header__menu-toggle span {
    background: var(--charcoal);
}

.header__menu-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.header__menu-toggle--active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

.footer {
    padding: 4rem 0 2rem;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer__logo-img {
    height: 100px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer__logo-link:hover .footer__logo-img {
    opacity: 1;
}

.footer__brand-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.7rem;
}

.footer__links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-item a:hover {
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--gold);
}

.footer__toggle {
    display: none;
}

.footer__toggle-icon {
    display: none;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.loading::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--cream-dark);
    border-top-color: var(--burgundy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.empty-state {
    text-align: center;
    padding: 6rem 0;
    color: var(--text-muted);
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header__inner {
        height: 60px;
    }

    .header--scrolled .header__inner {
        height: 52px;
    }

    .header__logo-img {
        height: 42px;
    }

    .header--scrolled .header__logo-img {
        height: 36px;
    }

    .header--solid .header__logo-img {
        height: 42px;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
    }

    .header__nav--open {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
    }

    .header__nav-link {
        display: block;
        color: var(--charcoal);
        padding: 1rem 0;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--cream-dark);
    }

    .header__nav-link:hover {
        color: var(--burgundy);
    }

    .header__nav-link::after {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer__brand {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer__logo-link {
        display: block;
        text-align: center;
    }

    .footer__logo-img {
        margin: 0 auto;
        height: 80px;
    }

    .footer__brand-description {
        max-width: none;
        text-align: center;
    }

    .footer__column--collapsible .footer__heading {
        margin-bottom: 0;
        pointer-events: none;
    }

    .footer__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .footer__toggle-icon {
        display: block;
        position: relative;
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .footer__toggle-icon::before,
    .footer__toggle-icon::after {
        content: '';
        position: absolute;
        background: var(--gold);
        transition: transform 0.3s ease;
    }

    .footer__toggle-icon::before {
        top: 50%;
        left: 0;
        width: 12px;
        height: 1px;
        transform: translateY(-50%);
    }

    .footer__toggle-icon::after {
        top: 0;
        left: 50%;
        width: 1px;
        height: 12px;
        transform: translateX(-50%);
    }

    .footer__toggle[aria-expanded="true"] .footer__toggle-icon::after {
        transform: translateX(-50%) rotate(90deg);
    }

    .footer__collapsible-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer__toggle[aria-expanded="true"]+.footer__collapsible-content {
        max-height: 300px;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.order-action-bar {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-action-bar__label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.order-action-bar__label strong {
    color: var(--charcoal);
    font-weight: 600;
}

.order-action-bar__buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.order-btn {
    padding: 0.7rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-btn--accept {
    background: #2D7A4F;
    color: var(--white);
    border-color: #2D7A4F;
}

.order-btn--accept:hover:not(:disabled) {
    background: #1F5A38;
    border-color: #1F5A38;
}

.order-btn--reject {
    background: transparent;
    color: var(--error);
    border-color: var(--error);
}

.order-btn--reject:hover:not(:disabled) {
    background: var(--error);
    color: var(--white);
}

.order-btn--pack {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.order-btn--pack:hover:not(:disabled) {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}

.order-btn--ship {
    background: #2D5FA8;
    color: var(--white);
    border-color: #2D5FA8;
}

.order-btn--ship:hover:not(:disabled) {
    background: #1E4581;
    border-color: #1E4581;
}

.order-btn--deliver {
    background: #2D7A4F;
    color: var(--white);
    border-color: #2D7A4F;
}

.order-btn--deliver:hover:not(:disabled) {
    background: #1F5A38;
    border-color: #1F5A38;
}

.order-btn--cancel {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--cream-dark);
}

.order-btn--cancel:hover:not(:disabled) {
    background: var(--error);
    color: var(--white);
    border-color: var(--error);
}

.order-btn--print {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--cream-dark);
}

.order-btn--print:hover:not(:disabled) {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.order-status-large {
    text-align: center;
    padding: 1rem;
}

.order-status-large__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.order-status-large__badge {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.order-status-large__badge--pending {
    background: rgba(197, 160, 89, 0.15);
    color: #8B6D2F;
}

.order-status-large__badge--confirmed {
    background: rgba(74, 29, 63, 0.1);
    color: var(--burgundy);
}

.order-status-large__badge--packed {
    background: rgba(74, 29, 63, 0.15);
    color: var(--burgundy);
}

.order-status-large__badge--shipped {
    background: rgba(69, 116, 184, 0.15);
    color: #2D5FA8;
}

.order-status-large__badge--delivered {
    background: rgba(45, 122, 79, 0.15);
    color: var(--success);
}

.order-status-large__badge--rejected {
    background: rgba(184, 69, 69, 0.12);
    color: var(--error);
}

.order-status-large__badge--cancelled {
    background: rgba(184, 69, 69, 0.12);
    color: var(--error);
}

.order-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 0;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 30px;
    bottom: -8px;
    width: 2px;
    background: var(--cream-dark);
}

.timeline-item--completed:not(:last-child)::before {
    background: var(--gold);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item--completed .timeline-dot {
    background: var(--gold);
    color: var(--white);
}

.timeline-item--current .timeline-dot {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 29, 63, 0.15);
}

.timeline-item--rejected .timeline-dot,
.timeline-item--cancelled .timeline-dot {
    background: var(--error);
    color: var(--white);
}

.timeline-content {
    flex: 1;
    padding-top: 0.15rem;
}

.timeline-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.timeline-item--pending .timeline-title {
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-time {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tracking-info-box {
    background: var(--cream);
    border-left: 3px solid #2D5FA8;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.tracking-info-box__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.tracking-info-box__value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
    word-break: break-all;
}

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.admin-modal {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 20px 60px rgba(74, 29, 63, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.admin-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 0.5rem 0;
}

.admin-modal p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.admin-modal .admin-message {
    margin-bottom: 1rem;
}

.admin-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.header__user {
    position: relative;
}

.header__user-icon {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header__user-icon:hover {
    color: var(--white);
}

.header--scrolled .header__user-icon,
.header--solid .header__user-icon {
    color: var(--charcoal);
}

.header--scrolled .header__user-icon:hover,
.header--solid .header__user-icon:hover {
    color: var(--burgundy);
}

.header__user-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(74, 29, 63, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.header__user--open .header__user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__user-menu-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
}

.header__user-menu-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 0.15rem 0;
}

.header__user-menu-email {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    word-break: break-all;
}

.header__user-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s ease;
    border-top: 1px solid var(--cream-dark);
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.header__user-menu-link:first-child {
    border-top: none;
}

.header__user-menu-link:hover {
    background: #FAF7F2;
    color: var(--burgundy);
}

.header__user-menu-link--admin {
    color: var(--burgundy);
    font-weight: 600;
}

.header__user-menu-link--logout {
    color: var(--error);
}

.header__user-menu-link--logout:hover {
    background: rgba(184, 69, 69, 0.05);
    color: var(--error);
}



@media (max-width: 768px) {
    .header__user-menu {
        right: -60px;
        min-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body.pm-has-announcement .header {
    top: 42px;
}

@media (max-width: 768px) {
    body.pm-has-announcement .header {
        top: 50px;
    }

    #pm-announcement-bar {
        font-size: 0.75rem !important;
        padding: 0.6rem 2.5rem !important;
    }
}