/* Dark Theme Overrides for MBd Brand Discount Widget */
.widget_mbd_brand_discount_widget,
.widget_mbd_brand_discount_widget * {
    /* Ensure all text is light */
    color: #f1f1f1 !important;
}

/* Links */
.widget_mbd_brand_discount_widget a {
    color: #66aaff !important;
    text-decoration: none;
}
.widget_mbd_brand_discount_widget a:hover {
    text-decoration: underline;
}

/* Coupon Offer Box – Dark Background */
.widget_mbd_brand_discount_widget .mbd-coupon-box {
    padding: 15px;
    margin: 15px 0;
    background: #2a2a2a !important;  /* Dark background */
    position: relative;
    border-radius: 5px;
}

/* Coupon Code Details */
.widget_mbd_brand_discount_widget .mbd-coupon-code {
    font-size: 16px;
    margin: 5px 0;
}
.widget_mbd_brand_discount_widget .mbd-coupon-code-text {
    font-weight: bold;
    color: #fff;  /* Bright for visibility */
}
.widget_mbd_brand_discount_widget .mbd-discount-info {
    font-size: 14px;
    margin: 5px 0;
    color: #ddd;
}

/* Expiration Date Styling */
.widget_mbd_brand_discount_widget .mbd-expiration-date {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}

/* Offer Button */
.widget_mbd_brand_discount_widget .mbd-offer-button {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    background: #444 !important;
    color: #fff !important;
}

/* Brand Logo */
.widget_mbd_brand_discount_widget .mbd-brand-logo {
    max-width: 100px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

/* Brand Name (Below Dropdown) – Light Gray */
.widget_mbd_brand_discount_widget .mbd-brand-discount h3 {
    margin-top: 0;
    color: #ccc !important;  /* Light gray color */
}

/* Responsive adjustments for logo and buttons */
@media (max-width: 600px) {
    .widget_mbd_brand_discount_widget .mbd-brand-logo {
        max-width: 80px;
    }
    .widget_mbd_brand_discount_widget .mbd-offer-button {
        padding: 6px 10px;
    }
}

/* Copy Button */
.widget_mbd_brand_discount_widget .mbd-copy-button {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: #444;
    color: #fff;
}
.widget_mbd_brand_discount_widget .mbd-copy-confirmation {
    display: none;
    color: #66ff66;  /* Bright green confirmation */
    margin-left: 10px;
    font-size: 14px;
}

/* Accessibility Focus Styles */
.widget_mbd_brand_discount_widget .mbd-copy-button:focus,
.widget_mbd_brand_discount_widget .mbd-offer-button:focus,
.widget_mbd_brand_discount_widget .mbd-brand-discount a:focus,
.widget_mbd_brand_discount_widget .mbd-brand-select:focus {
    outline: 3px solid #ff9900;
    outline-offset: 2px;
}

/* Form Select Styling */
.widget_mbd_brand_discount_widget form[aria-label="Select Brand"] select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #2a2a2a;
    color: #f1f1f1;
}

/* Responsive Tweak for Coupon Box Padding */
@media (max-width: 600px) {
    .widget_mbd_brand_discount_widget .mbd-coupon-box {
        padding: 10px;
    }
}

/* Product Thumbnails */
.widget_mbd_brand_discount_widget .mbd-product-thumbnails {
    margin-top: 20px;
    text-align: center;
}
.widget_mbd_brand_discount_widget .mbd-product-thumbnails h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}
.widget_mbd_brand_discount_widget .mbd-product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.widget_mbd_brand_discount_widget .mbd-product-card {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
    width: 120px;
    text-align: center;
    transition: transform 0.3s ease;
}
.widget_mbd_brand_discount_widget .mbd-product-card:hover {
    transform: scale(1.05);
}
.widget_mbd_brand_discount_widget .mbd-product-card a {
    display: block;
    color: #f1f1f1;
    text-decoration: none;
}
.widget_mbd_brand_discount_widget .mbd-product-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* Product Title Text – Dark Background */
.widget_mbd_brand_discount_widget .mbd-product-title {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    background: #1a1a1a;  /* Dark background for title */
    border-top: 1px solid #444;
    color: #f1f1f1;
}

/* Override text color and background for add coupon form inputs in widget */
.mbd-add-coupon-form-widget input,
.mbd-add-coupon-form-widget textarea {
    color: #000 !important;
    background-color: #fff !important;
}
