.product-notice-container {
    width: 100%;
}

.product-notice-box {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: 6px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-notice-box:hover {
    background-color: #faf2cc;
    border-color: #f0e1a1;
}

.product-notice-icon {
    background-color: #EEB125;
    padding: 10px;
    border-radius: 30px;
    color: #8a6d3b;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.product-notice-icon i {
    font-size: 24px;
}

.product-notice-content {
    flex-grow: 1;
}

.product-notice-title {
    font-weight: bold;
    color: #8a6d3b;
    font-size: 15px;
    line-height: 1.4;
}

.product-notice-subtitle {
    color: #8a6d3b;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 2px;
}

.product-notice-arrow {
    display: flex;
    align-items: center;
    color: #8a6d3b;
}

.product-notice-arrow i {
    font-size: 20px;
}

/* Modal fixes */
.product-notice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.product-notice-modal-header .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.product-notice-modal-header .product-notice-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    cursor: pointer;
}

.product-notice-modal-header .product-notice-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

/* Fix for theme overriding the span inside the close button */
.product-notice-modal-header .product-notice-close span {
    width: auto !important;
    display: inline !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-notice-modal-subtitle {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}