/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2025 | 08:06:14 */
 .search-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .search-widget {
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            display: flex;
            justify-content: flex-end;
        }

        .search-trigger {
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
        }

        .search-trigger:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
        }

        .search-trigger:active {
            transform: translateY(0);
        }

        .search-trigger svg {
            width: 20px;
            height: 20px;
        }

        .search-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 282px;
            max-width: 90vw;
            background: rgb(255 255 255 / 49%);
            backdrop-filter: blur(10px);
            border-radius: 50px;  
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .search-container.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .search-input-wrapper {
            position: relative;
            width: 100%;
        }

        .search-input {
            width: 100%;
            height: 35px;
            padding: 0 60px 0 20px !important;
            font-size: 16px;
            color: #333;
            background: hsl(0deg 0% 100% / 53%);
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            outline: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .search-input::placeholder {
            color: #999;
            font-size: 16px;
        }

        .search-input:focus {
          border-color: #e0703c;
          box-shadow: 0 0 0 3px rgb(175 123 76 / 10%);
        }

        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
        }

        .search-button:hover {  
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
        }

        .search-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .search-button svg {
            width: 18px;
            height: 18px;
        }

        /* Demo content styles */
        .demo-content {
            max-width: 800px;
            margin: 80px auto 0;
            color: white;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .demo-content p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .search-container {
                width: 320px;
                right: -10px;
            }
            
            .search-trigger {
                width: 35px;
                height: 35px;
            }
            
            .search-input {
                height: 35px;
                font-size: 15px;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .search-container {
                width: 199px;
                right: -20px;
            }
            
            .search-input {
                height: 28px;
                font-size: 12px !important;
                padding: 0 55px 0 15px;
            }

            .search-button {
                width: 25px;
                height: 25px;
				right: 1px;
            }
			
			.search-trigger.single {
    margin-left: 90px;
}
			
		    .search-trigger {
        height: 30px;
    }

            .search-button svg {
                width: 16px;
                height: 16px;
            }
        }



div#search-1, div#block-2 {
  display: none;
}

.archive .search-form,.tax-categories .search-form, #secondary .widget_search {
display: none;
}