    .ly-zipcode-widget-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    
    .ly-zipcode-widget {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .ly-zipcode-form {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ly-zipcode-input-group {
        display: flex;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
        box-sizing: border-box;
        border-radius: 100px;
    }
    
    .ly-zipcode-input-group:focus-within {
        box-shadow: 0 6px 30px rgba(0, 102, 204, 0.2);
    }
    
    .ly-zipcode-input {
        flex: 1;
        padding: 18px 24px;
        font-size: 16px;
        border: 2px solid #e5e7eb;
        border-right: none;
        outline: none;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        color: #1f2937;
        transition: border-color 0.2s ease;
        border-radius: 100px 0 0 100px;
        box-sizing: border-box;
        background-color: #ffffff;
    }
    
    .ly-zipcode-input:focus {
        border-color: #0066CC;
    }
    
    .ly-zipcode-input::placeholder {
        color: #9ca3af;
    }
    
    .ly-zipcode-button {
        padding: 18px 32px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        white-space: nowrap;
        border-radius: 0 100px 100px 0;
        box-sizing: border-box;
    }
    
    .ly-zipcode-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        filter: brightness(1.1);
    }
    
    .ly-zipcode-button:active {
        transform: translateY(0);
    }
    
    .ly-zipcode-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    .ly-zipcode-error {
        margin-top: 12px;
        padding: 12px 16px;
        background-color: #fee2e2;
        border: 1px solid #ef4444;
        border-radius: 8px;
        color: #dc2626;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        animation: slideDown 0.3s ease;
        box-sizing: border-box;
    }
    
    .ly-zipcode-powered {
        text-align: center;
        margin-top: 12px;
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile responsive */
    @media (max-width: 640px) {
        .ly-zipcode-widget-wrapper {
            padding: 20px 16px;
            background: transparent !important;
        }
        
        .ly-zipcode-widget {
            max-width: 100% !important;
            padding: 0;
            background: transparent !important;
        }
        
        .ly-zipcode-form {
            background: transparent !important;
        }
        
        .ly-zipcode-input-group {
            flex-direction: column;
            gap: 12px;
            border-radius: 0 !important; /* Remove rounded background on mobile */
            box-shadow: none !important; /* Remove box shadow on mobile */
            background: none !important; /* No background */
            background-color: transparent !important; /* Force transparent */
        }
        
        .ly-zipcode-input {
            border-right: 2px solid #e5e7eb;
            border-bottom: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px 20px;
            width: 100%;
            box-shadow: none !important; /* Remove shadow on mobile */
            background: transparent !important; /* Force transparent on mobile */
            background-color: transparent !important; /* Force transparent on mobile */
            -webkit-appearance: none !important; /* Remove iOS default styling */
        }
        
        .ly-zipcode-input::placeholder {
            color: #9ca3af !important; /* Match desktop placeholder color */
            opacity: 1 !important; /* Ensure full opacity on mobile */
        }
        
        .ly-zipcode-input:focus,
        .ly-zipcode-input:active,
        .ly-zipcode-input:hover {
            background: transparent !important; /* Keep transparent when focused */
            background-color: transparent !important;
        }
        
        .ly-zipcode-button {
            border-radius: 100px;
            padding: 16px 32px;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Add individual shadow */
        }
    }
