/* PREMIUM MOBILE MODAL - APPLE-INSPIRED DESIGN */

@media (max-width: 767px) {
    /* CRITICAL: Hide desktop modal completely on mobile */
    #modalBackdrop {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    
    /* Modal Backdrop - Full Screen */
    .modal-backdrop {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(20px) saturate(1.8) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
        z-index: 9999 !important;
        display: none !important;
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 0 !important;
        opacity: 0 !important;
        touch-action: pan-y !important;
    }

    .modal-backdrop.modal-show {
        opacity: 1 !important;
        display: flex !important;
    }

    /* Modal Container - Full Height */
    .modal-container {
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height for mobile */
        background: #ffffff !important;
        border-radius: 0 !important;
        border: none !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        box-shadow: none !important;
        position: relative !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
        padding-top: env(safe-area-inset-top, 0) !important;
    }

    .modal-backdrop.modal-show .modal-container {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    /* Close Button - Clean Style */
    .modal-close-btn {
        position: absolute;
        top: 50px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        color: #1d1d1f;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
        border: none;
        font-size: 16px;
        font-weight: 600;
        box-shadow: none;
    }

    @media (hover: hover) {
        .modal-close-btn:hover {
            background: rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }
        
        .modal-back-btn:hover {
            background: #111111;
            transform: translateY(-1px);
        }
    }

    .modal-close-btn:active {
        transform: scale(0.95);
        background: rgba(0, 0, 0, 0.3);
    }
    
    .modal-back-btn:active {
        transform: scale(0.98);
        background: #222222;
    }

    /* Pull Indicator - Hidden for full screen */
    .modal-pull-indicator {
        display: none;
    }

    /* Scrollable Content Wrapper */
    .modal-scrollable-wrapper {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px; /* Space for fixed buttons */
    }

    /* Product Image Section - Scrollable */
    .modal-image-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px 20px 20px; /* Reduced bottom padding to allow shadow spillover */
        background: #ffffff;
        margin: 0;
        border-radius: 0;
        position: relative;
        box-shadow: none;
        border: none;
        overflow: visible; /* Allow shadow to spill into next container */
        z-index: 1; /* Ensure image section stays above content but below size buttons */
        min-height: 300px; /* Prevent layout shift during loading */
    }
    
    /* Loading state for image section */
    .modal-image-section.loading {
        background: #f8f9fa;
    }
    
    /* Loading spinner for image section */
    .modal-image-section.loading::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        border: 2px solid #e5e5e7;
        border-top: 2px solid #007aff;
        border-radius: 50%;
        animation: modal-loading-spin 1s linear infinite;
        z-index: 10;
    }
    
    @keyframes modal-loading-spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    /* PRODUCT IMAGE - Full visibility with shadow */
    .modal-product-image {
        width: auto;
        max-width: 70%;
        height: auto;
        max-height: 100%;
        aspect-ratio: 2/3;
        object-fit: contain;
        object-position: center;
        border-radius: 8px;
        border: none;
        box-shadow: 20px 25px 50px rgba(0, 0, 0, 0.6);
        transform: none;
        transition: opacity 0.3s ease;
        position: relative;
        z-index: 2; /* Ensure image and shadow stay above everything */
        opacity: 1;
    }
    
    /* CRITICAL FIX: Preserve shadow on all touch states */
    .modal-product-image:active,
    .modal-product-image:hover,
    .modal-product-image:focus {
        box-shadow: 20px 25px 50px rgba(0, 0, 0, 0.6) !important;
        transform: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    /* Image loading state */
    .modal-product-image.loading {
        opacity: 0;
        box-shadow: none;
    }
    
    /* Image loaded state */
    .modal-product-image.loaded {
        opacity: 1;
    }
    
    /* 3D PREVIEW SECTION - Between reviews and size selection */
    .modal-3d-preview-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        background: transparent;
        position: relative;
        overflow: visible;
        min-height: 200px;
    }
    
    /* 3D Preview Container */
    .modal-3d-preview-container {
        position: relative;
        width: 120px;
        height: 180px; /* 2:3 ratio (120 * 1.5 = 180) */
        perspective: 1000px;
        transform-style: preserve-3d;
    }
    
    /* 3D Poster Slab */
    .modal-3d-poster {
        position: absolute;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transform-origin: center center;
        /* Animation will be controlled by JavaScript */
    }
    
    /* Base rotation state - Cross-platform optimized */
    .modal-3d-poster {
        transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(15deg) rotateZ(-5deg);
        -webkit-transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(15deg) rotateZ(-5deg);
        will-change: transform;
        -webkit-will-change: transform;
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000px;
        -webkit-perspective: 1000px;
    }
    
    /* 3D Poster Face - Front (Product Image) */
    .modal-3d-poster-face {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 0; /* Remove rounded corners */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        background: #ffffff;
    }
    
    .modal-3d-poster-face.front {
        transform: rotateY(0deg) translateZ(2px); /* Reduced thickness */
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .modal-3d-poster-face.back {
        transform: rotateY(180deg) translateZ(2px); /* Reduced thickness */
        background: #ffffff; /* White background */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 3D Poster Image */
    .modal-3d-poster-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0; /* Remove rounded corners */
    }
    
    /* 3D Poster Logo */
    .modal-3d-poster-logo {
        width: 60%;
        height: auto;
        max-width: 80px;
        filter: none; /* Keep original black logo */
    }
    
    /* 3D Poster Side Faces - Create Thickness */
    .modal-3d-poster-face.left {
        position: absolute;
        width: 4px; /* Reduced thickness */
        height: 100%;
        transform: rotateY(-90deg) translateZ(2px);
        background: #e0e0e0; /* Slightly darker gray for better visibility */
        left: -2px; /* Adjusted positioning to touch front face */
        top: 0;
    }
    
    .modal-3d-poster-face.right {
        position: absolute;
        width: 4px; /* Reduced thickness */
        height: 100%;
        transform: rotateY(90deg) translateZ(2px);
        background: #e0e0e0; /* Slightly darker gray for better visibility */
        right: -2px; /* Adjusted positioning to touch front face */
        top: 0;
    }
    
    .modal-3d-poster-face.top {
        position: absolute;
        width: 100%;
        height: 4px; /* Reduced thickness */
        transform: rotateX(90deg) translateZ(2px);
        background: #e0e0e0; /* Slightly darker gray for better visibility */
        top: -2px; /* Adjusted positioning to touch front face */
        left: 0;
    }
    
    .modal-3d-poster-face.bottom {
        position: absolute;
        width: 100%;
        height: 4px; /* Reduced thickness */
        transform: rotateX(-90deg) translateZ(2px);
        background: #e0e0e0; /* Slightly darker gray for better visibility */
        bottom: -2px; /* Adjusted positioning to touch front face */
        left: 0;
    }
    
    /* 3D Poster Shadow */
    .modal-3d-poster::after {
        display: none;
    }
    

    
    /* 3D Preview Responsive Adjustments */
    @media (max-width: 480px) {
        .modal-3d-preview-container {
            width: 100px;
            height: 150px; /* 2:3 ratio (100 * 1.5 = 150) */
        }
        
        .modal-3d-preview-section {
            padding: 25px 15px;
            min-height: 180px;
        }
    }
    
    /* 3D Preview Loading State */
    .modal-3d-preview-section.loading {
        background: #f8f9fa;
    }
    
    .modal-3d-preview-section.loading .modal-3d-poster {
        animation: none;
        opacity: 0.5;
    }
    
    /* 3D Preview Hover Effect */
    @media (hover: hover) {
        .modal-3d-preview-container:hover .modal-3d-poster {
            animation-play-state: paused;
        }
    }
    
    /* MOBILE MODAL: Glint effect on image section container - exact match to site */
    .modal-image-section::before {
        content: '';
        position: absolute;
        top: 40px; /* Match container padding-top */
        left: 15%; /* Center the glint over the image area */
        width: 70%; /* Match image max-width */
        height: calc(100% - 60px); /* Account for reduced bottom padding */
        background: linear-gradient(
            115deg,
            transparent 20%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 80%
        );
        transform: translateX(-100%) translateY(-100%) skew(-15deg);
        animation: glint-sweep 6s infinite;
        pointer-events: none;
        filter: blur(12px);
        z-index: 10;
        border-radius: 8px; /* Match image border radius */
    }

    /* Content Area */
    .modal-content {
        overflow-x: hidden;
        padding: 20px 20px 20px; /* Added top padding for shadow spillover */
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 0; /* Keep content area below image section */
        opacity: 1;
        transition: opacity 0.2s ease;
    }
    
    /* Hide content while image is loading */
    .modal-content.image-loading {
        opacity: 0;
        pointer-events: none;
    }

    /* Top Section */
    .modal-top-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Product Title */
    .modal-product-title {
        font-size: 24px;
        font-weight: 700;
        color: #1d1d1f;
        margin: 0;
        line-height: 1.2;
        letter-spacing: -0.015em;
        text-align: center;
    }

    /* Product Subtitle - Small grey text */
    .modal-product-subtitle {
        font-size: 14px;
        font-weight: 700;
        color: #8e8e93;
        margin: 2px 0 0 0;
        text-align: center;
        line-height: 1.2;
    }

    /* Star Rating */
    .modal-product-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 14px;
        background: #ffffff;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .modal-stars {
        display: flex;
        gap: 2px;
    }

    .modal-stars .star {
        width: 14px;
        height: 14px;
        fill: #ff9500;
        color: #ff9500;
    }

    .modal-rating-text {
        font-size: 13px;
        color: #8e8e93;
        font-weight: 500;
    }
    
    /* Inline Star Icon */
    .inline-star {
        display: inline-block;
        vertical-align: middle;
        margin: 0 2px;
    }

    /* Size Selection - NO SCROLLING */
    .modal-size-section {
        margin: 0;
        background: #ffffff;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        overflow: hidden;
        touch-action: none;
        -webkit-overflow-scrolling: auto;
        position: relative;
        z-index: 1; /* Keep size section above content but below image */
    }

    .modal-section-title {
        font-size: 18px;
        font-weight: 600;
        color: #1d1d1f;
        margin: 0 0 12px 0;
        text-align: center;
        letter-spacing: -0.01em;
    }

    .modal-size-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* COLOR-FILL SIZE BUTTON - No Layout Shift */
    .modal-size-btn {
        padding: 16px 12px;
        border: 2px solid #e5e5e7;
        background: #ffffff;
        color: #1d1d1f;
        cursor: pointer;
        text-align: center;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        position: relative;
        min-height: 70px;
        transition: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        overflow: hidden;
        isolation: isolate;
        z-index: 3; /* Keep size buttons above image to maintain interactivity */
    }

    .modal-size-name {
        font-size: 15px;
        font-weight: 600;
        color: #1d1d1f;
        position: relative;
        z-index: 1;
        transition: color 0.2s ease-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        pointer-events: none;
    }

    .modal-size-dimensions {
        font-size: 11px;
        color: #8e8e93;
        font-weight: 400;
        position: relative;
        z-index: 1;
        transition: color 0.2s ease-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        pointer-events: none;
    }

    /* COLOR FILL ANIMATIONS - No Layout Shift */
    .modal-size-btn::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        background: #007aff;
        transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    
    .modal-size-btn:active {
        border-color: #007aff;
        transition: border-color 0.1s ease-out;
        z-index: 3; /* Maintain high z-index during active state */
    }
    
    .modal-size-btn.selecting {
        z-index: 3; /* Maintain high z-index during selecting state */
    }
    
    .modal-size-btn.selecting::before {
        top: 70%;
        transition: top 0.2s ease-out;
    }
    
    .modal-size-btn.selected-animation::before {
        top: 0;
        transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .modal-size-btn.selected-animation {
        color: white;
        border-color: #007aff;
        transition: color 0.2s ease-out 0.2s;
        z-index: 3; /* Maintain high z-index during animation */
    }
    
    .modal-size-btn.selected-animation .modal-size-name,
    .modal-size-btn.selected-animation .modal-size-dimensions {
        position: relative;
        z-index: 1;
    }

    /* FINAL SELECTED STATE - No Layout Shift */
    .modal-size-btn.selected {
        background: #007aff;
        border-color: #007aff;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 3; /* Maintain high z-index even when selected */
    }
    
    .modal-size-btn.selected::before {
        top: 0;
        background: #007aff;
    }

    .modal-size-btn.selected .modal-size-name {
        color: white;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .modal-size-btn.selected .modal-size-dimensions {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        position: relative;
        z-index: 1;
    }
    
    /* UNSELECTED BUTTONS - Subtle hover on desktop only */
    @media (hover: hover) {
        .modal-size-btn:not(.selected):hover {
            background: #f8f9fa;
            border-color: #d1d1d6;
            transform: translateY(-1px);
            transition: all 0.2s ease-out;
        }
    }

    /* Price Display */
    .modal-price-section {
        background: #ffffff;
        padding: 18px;
        border-radius: 0;
        border: none;
        text-align: center;
        box-shadow: none;
    }

    .modal-price-display {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .modal-current-price {
        font-size: 28px;
        font-weight: 700;
        color: #1d1d1f;
        letter-spacing: -0.02em;
    }

    .modal-price-note {
        font-size: 10px;
        color: #30d158;
        background: rgba(48, 209, 88, 0.1);
        padding: 3px 6px;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .modal-shipping-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 12px;
        color: #8e8e93;
        font-weight: 500;
    }

    .modal-shipping-icon {
        color: #30d158;
        width: 14px;
        height: 14px;
    }

    /* Premium Features */
    .modal-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        background: #ffffff;
        padding: 16px;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .modal-feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #1d1d1f;
        font-weight: 500;
        padding: 0;
    }

    .modal-feature-icon {
        color: #007aff;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    /* Reviews Section */
    .modal-reviews-section {
        margin-top: 20px;
        padding: 20px;
        background: #ffffff;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .modal-reviews-section .modal-section-title {
        color: #1d1d1f;
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 16px 0;
        text-align: left;
    }

    .modal-reviews-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .modal-review-item {
        background: #fafafa;
        padding: 16px;
        border-radius: 12px;
    }

    .modal-review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .modal-review-author {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .modal-review-name {
        font-size: 14px;
        font-weight: 600;
        color: #1d1d1f;
    }

    .modal-review-date {
        font-size: 12px;
        color: #8e8e93;
    }

    .modal-review-stars {
        display: flex;
        gap: 2px;
    }

    .modal-review-star.filled {
        color: #ff9500;
        fill: #ff9500;
    }

    .modal-review-star.empty {
        color: #e5e5e7;
        fill: #e5e5e7;
    }

    .modal-review-comment {
        font-size: 13px;
        color: #1d1d1f;
        line-height: 1.4;
        margin: 0;
    }



    /* Add to Cart Button - 80% width */
    .modal-add-to-cart-btn {
        flex: 1;
        padding: 16px 20px;
        background: #007aff;
        color: white;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: none;
    }

    @media (hover: hover) {
        .modal-add-to-cart-btn:hover {
            background: #0051d5;
            transform: translateY(-1px);
            box-shadow: none;
        }
    }

    .modal-add-to-cart-btn:active {
        transform: scale(0.98);
        background: #004bb5;
    }

    .modal-cart-icon {
        width: 18px;
        height: 18px;
    }

    /* Premium Scrollbar Styling */
    .modal-scrollable-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .modal-scrollable-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
        margin: 8px 0;
    }

    .modal-scrollable-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.15);
        border-radius: 3px;
        transition: background 0.2s ease;
    }

    .modal-scrollable-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.25);
    }

    .modal-scrollable-wrapper::-webkit-scrollbar-thumb:active {
        background: rgba(0, 0, 0, 0.35);
    }


    /* Middle Section */
    .modal-middle-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
        padding-bottom: 20px;
    }

    /* Bottom Section - Button Container - Fixed at bottom of screen */
    .modal-cart-section {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
        margin: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10002;
    }
    
    /* Only show cart section when modal is open */
    .modal-backdrop:not(.modal-show) .modal-cart-section {
        display: none;
    }
    
    /* Button Container */
    .modal-button-container {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    /* Back Button - Complementary Orange */
    .modal-back-btn {
        width: 20%;
        padding: 16px 12px;
        background: #000000;
        color: white;
        border: none;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: none;
        flex-shrink: 0;
    }
    
    .modal-back-icon {
        width: 20px;
        height: 20px;
    }
}

/* Glint sweep animation for mobile modal product image */
@keyframes glint-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) skew(-15deg);
    }
    25% {
        transform: translateX(100%) translateY(100%) skew(-15deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) skew(-15deg);
    }
}

/* Prevent background scrolling - Enhanced with position fixed */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* CRITICAL: Ensure main content doesn't create scrollbar when modal is open */
body.modal-open .main-content {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* CRITICAL: Force restore main-content when modal closes */
body:not(.modal-open) .main-content {
    overflow: visible !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
}

/* CRITICAL: Force restore html and body when modal closes */
html:not(.modal-open),
body:not(.modal-open) {
    overflow: auto !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
}