/* ============================================
   BASE STYLES - YOUR ORIGINAL STYLING
   ============================================ */

/* Main Styles */
.dynamic-add-to-cart-wrapper.pro.compact-style {
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(169, 152, 132, 0.5);
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.015) 0px, rgba(0, 0, 0, 0.015) 1px, transparent 3px, transparent 4px);
    border-top: 2px solid #A99884; 
    position: relative;
    box-sizing: border-box;
}

.dynamic-product-image {
    text-align: center;
    margin-bottom: 15px;
}

.dynamic-product-image img {
    max-width: 65%;
    height: auto;
    border-radius: 6px;
}

.dynamic-product-info {
    width: 100%;
}

.dynamic-price-container {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #2d3748;
}

.dynamic-price-container del {
    font-size: 14px;
    color: #a0aec0;
    margin-right: 6px;
}

.dynamic-price-container ins {
    text-decoration: none;
    color: #e53e3e;
}

.dynamic-product-description {
    color: #4E586A;
    font-size: 13px;
    line-height: 1.4;
    margin: 12px 0;
    border-left: 2px solid #e2e8f0;
    padding-left: 10px;
}

/* Seed Quantity Selector */
.dynamic-seed-quantity-selector {
    margin: 8px 0 16px;
}

.dynamic-seed-quantity-selector label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 13px;
}

.dynamic-seed-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dynamic-seed-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px 15px;
    border-left: 4px solid;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.dynamic-seed-option:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dynamic-seed-option.selected {
    background-color: #f8f9fa;
    border-left-width: 6px;
}

/* Seed option colors */
.dynamic-seed-option[data-seeds*="3"],
.dynamic-seed-option[data-seeds*="3"]:hover,
.dynamic-seed-option[data-seeds*="3"].selected { 
    border-left-color: #2196F3; 
}

.dynamic-seed-option[data-seeds*="5"],
.dynamic-seed-option[data-seeds*="5"]:hover,
.dynamic-seed-option[data-seeds*="5"].selected { 
    border-left-color: #4CAF50; 
}

.dynamic-seed-option[data-seeds*="10"],
.dynamic-seed-option[data-seeds*="10"]:hover,
.dynamic-seed-option[data-seeds*="10"].selected { 
    border-left-color: #FF9800; 
}

.dynamic-seed-option[data-seeds*="25"],
.dynamic-seed-option[data-seeds*="25"]:hover,
.dynamic-seed-option[data-seeds*="25"].selected { 
    border-left-color: #d63384; 
}

/* Background colors for selected states */
.dynamic-seed-option[data-seeds*="3"]:hover,
.dynamic-seed-option[data-seeds*="3"].selected { background-color: #E3F2FD; }
.dynamic-seed-option[data-seeds*="5"]:hover,
.dynamic-seed-option[data-seeds*="5"].selected { background-color: #F1F8E9; }
.dynamic-seed-option[data-seeds*="10"]:hover,
.dynamic-seed-option[data-seeds*="10"].selected { background-color: #FFF8E1; }
.dynamic-seed-option[data-seeds*="25"]:hover,
.dynamic-seed-option[data-seeds*="25"].selected { background-color: #FBEEF6; }

.seed-quantity {
    font-weight: 600;
    color: #404040;
    font-size: 14px;
}

.seed-price {
    color: #4E586A;
    font-size: 14px;
    font-weight: 500;
}

/* Stock Status */
.dynamic-stock-status {
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    background: #f7fafc;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dynamic-in-stock {
    color: #308252;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dynamic-out-of-stock {
    color: #e53e3e;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Quantity Selector */
.dynamic-quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.dynamic-quantity-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 13px;
}

.dynamic-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dynamic-quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dynamic-quantity-btn:hover:not(:disabled) {
    border-color: #4299e1;
    background: #f7fafc;
}

.dynamic-quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dynamic-quantity-input {
    width: 50px;
    height: 32px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.dynamic-quantity-input::-webkit-outer-spin-button,
.dynamic-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dynamic-quantity-input:focus {
    outline: none;
    border-color: #4299e1;
}

/* Cart Controls */
.dynamic-cart-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
    flex-wrap: wrap;
}

/* Action Buttons */
.dynamic-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.dynamic-action-buttons button {
    flex: 1;
    min-height: 44px;
}

.dynamic-add-to-cart-btn,
.dynamic-buy-now-btn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.dynamic-add-to-cart-btn {
    background: #0B8443;
    color: white;
}

.dynamic-add-to-cart-btn:hover:not(:disabled) {
    background: #0D954D;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 169, 88, 0.3);
}

.dynamic-buy-now-btn {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
}

.dynamic-buy-now-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #3c4858 0%, #2d3748 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.dynamic-add-to-cart-btn:disabled,
.dynamic-buy-now-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Button States */
.dynamic-add-to-cart-btn.processing,
.dynamic-buy-now-btn.processing {
    background: #4299e1;
    animation: pulse 1.5s infinite;
}

.dynamic-add-to-cart-btn.success {
    background: #0FA958;
    animation: successPulse 0.5s;
}

.dynamic-buy-now-btn.success {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    animation: successPulse 0.5s;
}

.dynamic-add-to-cart-btn.error,
.dynamic-buy-now-btn.error {
    background: #e53e3e;
    animation: errorShake 0.5s;
}

.dynamic-btn-loading,
.dynamic-buy-now-loading {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dynamic-spinner {
    animation: spin 1s linear infinite;
}

/* Payment Methods */
.dynamic-payment-methods {
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.dynamic-payment-title {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dynamic-payment-icons {
    padding: 0 5px;
}

.dynamic-payment-icons img {
    max-width: 250px!important;
    height: auto;
    display: block;
    margin: 0 auto;
}

.dynamic-payment-note {
    font-size: 11px;
    color: #6c757d;
    margin-top: 8px;
    font-weight: 500;
    opacity: 0.8;
}

/* Toast Notification */
.dynamic-cart-toast {
    position: fixed;
    text-align: center;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0FA958;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dynamic-cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Cart Count */
.dynamic-cart-count {
    display: inline-block;
    padding: 2px 6px;
    background: #0FA958;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /*.dynamic-seed-option {
        padding: 6px 8px;
    }*/
    
    .seed-price {
        font-size: 13px;
    }
    
    .dynamic-action-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .dynamic-add-to-cart-btn,
    .dynamic-buy-now-btn {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .dynamic-cart-controls {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dynamic-quantity-selector {
        margin-left: auto;
        justify-content: space-between;
    }
    
    .dynamic-payment-methods {
        margin-top: 16px;
    }
    
    .dynamic-payment-title {
        font-size: 11px;
        margin-bottom: 0;
    }
    
    .dynamic-payment-icons img {
        max-width: 80%!important;
    }
    
    .dynamic-payment-note {
        font-size: 10px;
    }
	
	.dynamic-add-to-cart-wrapper.pro.compact-style {
    border-radius: 0px;
    border: 0px ;
    border-top: 0px; 
}
}

/* ============================================
   MOBILE CART SHORTCODE STYLES
   ============================================ */

/* Mobile cart shortcode - for inline placement */
.dynamic-mobile-cart-shortcode .dynamic-add-to-cart-wrapper {
    margin: 0 auto;
}

/* ============================================
   MOBILE FOOTER CART STYLES - IMPROVED
   ============================================ */

.dynamic-mobile-footer-cart {
    display: none;
    position: relative;
    width: 100%;
    background: white;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    border-top: 1px solid #e9ecef;
}

/* Show on mobile only */
@media (max-width: 767px) {
    .dynamic-mobile-footer-cart {
        display: block;
    }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .dynamic-mobile-footer-cart {
        display: none !important;
    }
}

/* Mobile cart header */
.mobile-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #303030;
    color: white;
    cursor: pointer;
    user-select: none;
    border-bottom: 2px solid #A99884;
}

.mobile-cart-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.mobile-cart-icon {
	display:flex;
}

.mobile-cart-text {
    font-weight: 600;
    font-size: 13px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.mobile-cart-arrow {
    font-size: 10px;
    color: #dee2e6;
    transition: transform 0.3s ease;
}

.dynamic-mobile-footer-cart.expanded .mobile-cart-arrow {
    transform: rotate(180deg);
}

.mobile-cart-price {
    margin-left: 10px;
}

.mobile-price {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    white-space: nowrap;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Collapsible content */
.mobile-cart-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.dynamic-mobile-footer-cart.expanded .mobile-cart-content {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Cart content inside mobile footer */
.dynamic-mobile-footer-cart .dynamic-add-to-cart-wrapper {
    margin: 0;
    padding: 15px;
    border: none;
    background: white;
    border-top: none;
    box-shadow: none;
    border-radius: 0;
}

/* ============================================
   MOBILE-SPECIFIC STYLES FOR SEED OPTIONS
   ============================================ */

.dynamic-mobile-footer-cart .dynamic-seed-quantity-selector {
    margin: 0 0 5px 0;
}

.dynamic-mobile-footer-cart .dynamic-seed-quantity-selector label {
    display: flex;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 18px;
    align-items: center;
}

/* Make seed options display as a row */
.dynamic-mobile-footer-cart .dynamic-seed-options {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
}

.dynamic-mobile-footer-cart .dynamic-seed-option {
    flex: 1 !important;
    min-width: 70px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(169, 152, 132, 0.3) !important;
    padding: 8px 4px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

/* Make selected state more subtle/transparent */
.dynamic-mobile-footer-cart .dynamic-seed-option.selected {
    background: rgba(15, 169, 88, 0.1) !important;
    border-color: #0FA958 !important;
    border-width: 2px !important;
}

/* Remove left border colors for mobile */
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="3"],
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="3"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="3"].selected { 
    border-left-color: rgba(169, 152, 132, 0.3) !important;
    border-left-width: 1px !important;
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="5"],
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="5"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="5"].selected { 
    border-left-color: rgba(169, 152, 132, 0.3) !important;
    border-left-width: 1px !important;
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="10"],
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="10"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="10"].selected { 
    border-left-color: rgba(169, 152, 132, 0.3) !important;
    border-left-width: 1px !important;
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="25"],
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="25"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="25"].selected { 
    border-left-color: rgba(169, 152, 132, 0.3) !important;
    border-left-width: 1px !important;
}

/* Remove background colors for mobile */
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="3"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="3"].selected { 
    background: rgba(33, 150, 243, 0.1) !important; 
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="5"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="5"].selected { 
    background: rgba(76, 175, 80, 0.1) !important; 
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="10"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="10"].selected { 
    background: rgba(255, 152, 0, 0.1) !important; 
}

.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="25"]:hover,
.dynamic-mobile-footer-cart .dynamic-seed-option[data-seeds*="25"].selected { 
    background: rgba(214, 51, 132, 0.1) !important; 
}

.dynamic-mobile-footer-cart .seed-quantity {
    font-weight: 600;
    color: #404040;
    font-size: 12px !important;
    margin-bottom: 2px !important;
}

.dynamic-mobile-footer-cart .seed-price {
    color: #0FA958 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

/* ============================================
   MOBILE CART CONTROLS STYLES
   ============================================ */

.dynamic-mobile-footer-cart .dynamic-cart-controls {
    display: flex;
    /*flex-direction: column; */
    gap: 12px;
    margin: 5px 0 !important;
	align-items: center;
}

.dynamic-mobile-footer-cart .dynamic-stock-status {
    padding: 6px 10px !important;
    font-size: 12px !important;
    width: fit-content !important;
    background: #f0f9f0 !important;
    border-radius: 10px !important;
    border: 1px solid #d1f0d1 !important;
}

.dynamic-mobile-footer-cart .dynamic-in-stock,
.dynamic-mobile-footer-cart .dynamic-out-of-stock {
    font-size: 12px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.dynamic-mobile-footer-cart .dynamic-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;	
    /* background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;*/
}

.dynamic-mobile-footer-cart .dynamic-quantity-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 13px;
}

.dynamic-mobile-footer-cart .dynamic-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dynamic-mobile-footer-cart .dynamic-quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dynamic-mobile-footer-cart .dynamic-quantity-btn:hover {
    background: #0FA958;
    color: white;
    border-color: #0FA958;
}

.dynamic-mobile-footer-cart .dynamic-quantity-input {
    width: 40px;
    height: 30px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: white;
}

/* ============================================
   MOBILE ACTION BUTTONS
   ============================================ */

.dynamic-mobile-footer-cart .dynamic-action-buttons {
    display: flex;
    gap: 10px;
    /* margin: 15px 0 !important; */
}

.dynamic-mobile-footer-cart .dynamic-add-to-cart-btn,
.dynamic-mobile-footer-cart .dynamic-buy-now-btn {
    flex: 1;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-mobile-footer-cart .dynamic-add-to-cart-btn {
    background: #0B8443;
    color: white;
}

.dynamic-mobile-footer-cart .dynamic-add-to-cart-btn:hover:not(:disabled) {
    background: #0D954D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 169, 88, 0.3);
}

.dynamic-mobile-footer-cart .dynamic-buy-now-btn {
    background: #2d3748;
    color: white;
}

.dynamic-mobile-footer-cart .dynamic-buy-now-btn:hover:not(:disabled) {
    background: #3c4858;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

/* ============================================
   STICKY MODE (When scrolled past inline cart)
   ============================================ */

.dynamic-mobile-footer-cart.sticky-active {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    animation: slideUpSticky 0.3s ease;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1) !important;
    border-top: 2px solid #A99884 !important;
}

/* When expanded, show content */
.dynamic-mobile-footer-cart.expanded {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

.dynamic-mobile-footer-cart.expanded .mobile-cart-content {
    display: block !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

@keyframes slideUpSticky {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   ENSURE EXPANDED CART IS VISIBLE
   ============================================ */

.dynamic-mobile-footer-cart.sticky-active.expanded {
    display: block !important;
}

.dynamic-mobile-footer-cart.sticky-active.expanded .mobile-cart-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Make sure sticky cart is always on top when expanded */
.dynamic-mobile-footer-cart.expanded {
    z-index: 99999 !important;
}

/* Ensure cart content is visible when expanded */
.dynamic-mobile-footer-cart.expanded .dynamic-add-to-cart-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Make the arrow point up when expanded */
.dynamic-mobile-footer-cart.expanded .mobile-cart-arrow {
    transform: rotate(180deg) !important;
}

/* ============================================
   HIDE ON CART/CHECKOUT PAGES
   ============================================ */

.cart .dynamic-mobile-footer-cart,
.checkout .dynamic-mobile-footer-cart {
    display: none !important;
}

/* ============================================
   REMOVE OLD FLOATING CART
   ============================================ */

.dynamic-floating-mobile-cart {
    display: none !important;
}